View Single Post
  #17 (permalink)  
Old 01-06-2006, 05:48 PM
marcmac marcmac is offline
Zimbra Employee
 
Posts: 2,103
Default install automation

Create a file like this, replacing @@HOSTNAME@@ with the hostname of the server you want to install. The INSTALL_PACKAGES line should list the packages you want to install. Feel free to change anything else you want to in the file:

REMOVE=no
UPGRADE=yes
HOSTNAME=@@HOSTNAME@@
LDAPHOST=@@HOSTNAME@@
LDAPPORT=389
SMTPHOST=@@HOSTNAME@@
SNMPTRAPHOST=@@HOSTNAME@@
SMTPSOURCE=none
SMTPDEST=none
SNMPNOTIFY=0
SMTPNOTIFY=0
INSTALL_PACKAGES="zimbra-core zimbra-ldap zimbra-mta zimbra-snmp zimbra-store zimbra-logger zimbra-apache zimbra-spell"
STARTSERVERS=yes
LDAPPASS=zimbra
CREATEDOMAIN=@@HOSTNAME@@
CREATEADMIN=admin@@@HOSTNAME@@
CREATEADMINPASS=test123
MODE=mixed
ALLOWSELFSIGNED=true
RUNAV=yes
AVUSER=virusadmin@@@HOSTNAME@@
AVDOMAIN=@@HOSTNAME@@
RUNSA=yes
AVDOMAIN=@@HOSTNAME@@
RUNSA=yes

To install:
./install.sh filename

where filename is the name of your text file.

This works currently, but it's not guaranteed to work forever. Install automation isn't a priority - installation isn't something that happens all that often.
Reply With Quote