Template:AddReposDebian: Difference between revisions

From Open-Xchange
No edit summary
No edit summary
Line 55: Line 55:
  EOF
  EOF
</code>
</code>
 
<!--
Starting with the release of Open-Xchange AppSuite 7.6.0, you you can also download the complete repository list from
Starting with the release of Open-Xchange AppSuite 7.6.0, you you can also download the complete repository list from


   http://software.open-xchange.com/products/appsuite/stable/{{{debnameox}}}.list
   http://software.open-xchange.com/products/appsuite/stable/{{{debnameox}}}.list


For the basic install, you only need the repositories backend and frontend, you can comment out the others. If you want to configure the update repositories as well, you need to replace LDBACCOUNT and LDBPASSWORD with your real LDB credentials.
For the basic install, you only need the repositories backend and frontend, you can comment out the others. If you want to configure the update repositories as well, you need to replace LDBACCOUNT and LDBPASSWORD with your real LDB credentials. -->
}}
}}

Revision as of 13:02, 25 June 2014

Add Open-Xchange Repository

Open-Xchange maintains public available software repositories for different platforms, such as Debian. This repository should be added to the Debian installation to enable simple installation and updates.

Start a console and modify the Debian repository information file. It is required to add the non-free section of the Debian main repository for Sun Java. Also add the Open-Xchange software repository:

{{#if:{{{release}}}|{{#ifeq:|6.22|

$ cat << EOF >> /etc/apt/sources.list.d/open-xchange.list

deb http://software.open-xchange.com/OX6/6.22/frontend/{{{debnameox}}}/ /
deb http://software.open-xchange.com/OX6/6.22/backend/{{{debnameox}}}/ /
deb http://software.open-xchange.com/OX6/6.22/usm/{{{debnameox}}}/ /

# if you have a valid maintenance subscription, please uncomment the 
# following and add the ldb account data to the url so that the most recent
# packages get installed
# deb http://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/OX6/6.22/updates/frontend/{{{debnameox}}} /
# deb http://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/OX6/6.22/updates/backend/{{{debnameox}}} /
# deb http://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/OX6/6.22/updates/usm/{{{debnameox}}} /
EOF

|}}|}}{{#if:{{{release}}}|{{#ifeq:|6.20|

$ cat << EOF >> /etc/apt/sources.list.d/open-xchange.list

deb http://software.open-xchange.com/OX6/6.20/{{{debnameox}}}/ /

# if you have a valid maintenance subscription, please uncomment the 
# following and add the ldb account data to the url so that the most recent
# packages get installed
# deb http://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/OX6/6.20/updates/{{{debnameox}}} /
EOF

}}|}}{{#ifeq:|edp|

$ vim /etc/apt/sources.list

deb http://EDPUSER:EDPPASSWORD@software.open-xchange.com/OX7/backend/{{{debnameox}}}/ /
deb http://EDPUSER:EDPPASSWORD@software.open-xchange.com/OX7/frontend/{{{debnameox}}}/ /

}}{{#ifeq:|appsuite|

$ cat << EOF >> /etc/apt/sources.list.d/open-xchange.list

deb http://software.open-xchange.com/products/appsuite/stable/appsuiteui/{{{debnameox}}}/ /
deb http://software.open-xchange.com/products/appsuite/stable/backend/{{{debnameox}}}/ /

# if you have a valid maintenance subscription, please uncomment the 
# following and add the ldb account data to the url so that the most recent
# packages get installed
# deb http://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/products/appsuite/stable/appsuiteui/updates/{{{debnameox}}} /
# deb http://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/products/appsuite/stable/backend/updates/{{{debnameox}}} /
EOF

}}