2006-04-26 12:28:53 +00:00
#!/bin/sh
#
# AlternC Main install script.
# This script should be launched only once, when installing AlternC
# on a new server. THIS SCRIPT ERASE ALL DATA ON THE AlternC SYSTEM !!
# YOU HAVE BEEN WARNED !
2008-04-13 04:35:19 +00:00
# This script now assumes it has MySQL connectivity through
# /etc/alternc/my.cnf
2006-04-26 12:28:53 +00:00
set -e
2007-09-09 18:56:31 +00:00
. /usr/lib/alternc/functions.sh
2006-04-26 12:28:53 +00:00
#######################################################################
# Script configuration
#
# Configuration template location
TEMPLATE_DIR="/etc/alternc/templates"
# Find needed configuration files (without the initial '/')
2006-04-26 21:38:32 +00:00
# replace this one unconditionnally
CONFIG_FILES="etc/alternc/bureau.conf"
2006-04-26 12:28:53 +00:00
if [ -e /etc/bind/named.conf ]; then
CONFIG_FILES="$CONFIG_FILES etc/bind/templates/zone.template
etc/bind/templates/named.template etc/bind/named.conf"
fi
if [ -e /etc/courier/authdaemonrc ]; then
CONFIG_FILES="$CONFIG_FILES etc/courier/authdaemonrc
etc/courier/authmysqlrc"
fi
2007-08-23 08:01:01 +00:00
if [ -d /etc/postfix ]; then
2008-10-06 22:12:41 +00:00
CONFIG_FILES="$CONFIG_FILES etc/postfix/myalias.cf
2006-04-26 12:28:53 +00:00
etc/postfix/mydomain.cf etc/postfix/mygid.cf
etc/postfix/myvirtual.cf etc/postfix/sasl/smtpd.conf"
fi
2007-08-22 22:32:12 +00:00
if [ -e /etc/proftpd/proftpd.conf ]; then
CONFIG_FILES="$CONFIG_FILES etc/proftpd/proftpd.conf etc/proftpd/welcome.msg etc/proftpd/modules.conf"
2006-04-26 12:28:53 +00:00
fi
if [ -e /etc/squirrelmail/apache.conf ]; then
CONFIG_FILES="$CONFIG_FILES etc/squirrelmail/apache.conf"
fi
if [ -e /etc/default/saslauthd ]; then
CONFIG_FILES="$CONFIG_FILES etc/default/saslauthd"
fi
INSTALLED_CONFIG_TAR="/var/backups/alternc/etc-installed.tar.gz"
#######################################################################
# Look for modified configuration files
#
if [ -f "$INSTALLED_CONFIG_TAR" ]; then
2008-10-06 22:21:37 +00:00
CHANGED="`env LANG=C tar -zdf "$INSTALLED_CONFIG_TAR" -C / 2> /dev/null |
grep -v 'postfix/main.cf' | grep -v 'Uid differs'|grep -v 'Gid differs' |grep -v 'Mode differs' |
2006-04-26 12:28:53 +00:00
sed -e 's/^\([^:]*\).*/ \1/' | sort -u`"
if [ ! -z "$CHANGED" ]; then
echo "The following configuration files has changed since last AlternC"
echo "installation :"
echo "$CHANGED"
echo ""
if [ "$1" = "force" ]; then
echo "Replacing them as you requested."
else
echo "These configuration files should normally be modified by"
echo "changing the template in $TEMPLATE_DIR and then calling"
echo "$0 to perform the update."
echo ""
echo "Please examine the situation closely and call '$0 force'"
echo "if you still want to actually overwrite these files."
exit 1
fi
fi
fi
#######################################################################
# Prepare template expansions
#
. /etc/alternc/local.sh
2008-04-13 04:35:19 +00:00
# XXX: copy-paste from debian/config
if [ -r /etc/alternc/my.cnf ]; then
# make mysql configuration available as shell variables
# to convert from .cnf to shell syntax, we:
# * match only lines with "equal" in them (/=/)
# * remove whitespace around the = and add a left quote operator ' (;s)
# * add a right quote operator at the end of line (;s)
# * convert mysql variables into our MYSQL_ naming convention (;s)
# * print the result (;p)
2008-04-17 23:04:26 +00:00
eval `sed -n -e "/=/{s/ *= *\"\?/='/;s/\"\?\$/'/;s/host/MYSQL_HOST/;s/user/MYSQL_USER/;s/password/MYSQL_PASS/;s/database/MYSQL_DATABASE/;p}" /etc/alternc/my.cnf`
2008-07-10 21:37:29 +00:00
chown root:www-data /etc/alternc/my.cnf
chmod 640 /etc/alternc/my.cnf
2008-04-13 04:35:19 +00:00
fi
2006-04-26 12:28:53 +00:00
WARNING="WARNING: Do not edit this file, edit the one in /etc/alternc/templates and launch alternc.install again."
VERSION="`dpkg -s alternc | sed -n -e 's/^Version: \(.*\)/\1/p'`"
# /var/alternc/dns/d/www.example.com
FQDN_LETTER="`echo $FQDN | sed -e 's/.*\.\([^\.]\)[^\.]*\.[^\.]*$/\1/'`"
if [ "$FQDN_LETTER" = "$FQDN" ]
then
FQDN_LETTER="_"
fi
NS2_IP=`perl -e "\\$h = (gethostbyname(\"$NS2_HOSTNAME\"))[4];
@ip = unpack('C4', \\$h);
print join (\".\", @ip);"`
if [ ! -z "$BIND_INTERNAL" ]; then
BIND_INTERNAL="$BIND_INTERNAL;"
fi
if [ -z "$MONITOR_IP" ]; then
MONITOR_IP="127.0.0.1"
fi
2008-04-13 04:35:19 +00:00
# XXX: I assume this is secure if /tmp is sticky (+t)
# we should have a better way to deal with templating, of course.
SED_SCRIPT=`mktemp`
cat > $SED_SCRIPT <<EOF
2006-04-26 12:28:53 +00:00
s\\%%hosting%%\\$HOSTING\\;
s\\%%fqdn%%\\$FQDN\\;
s\\%%public_ip%%\\$PUBLIC_IP\\;
s\\%%internal_ip%%\\$INTERNAL_IP\\;
s\\%%monitor_ip%%\\$MONITOR_IP\\;
s\\%%ns1%%\\$NS1_HOSTNAME\\;
s\\%%ns2%%\\$NS2_HOSTNAME\\;
s\\%%bind_internal%%\\$BIND_INTERNAL\\;
s\\%%mx%%\\$DEFAULT_MX\\;
s\\%%dbhost%%\\$MYSQL_HOST\\;
s\\%%dbname%%\\$MYSQL_DATABASE\\;
s\\%%dbuser%%\\$MYSQL_USER\\;
s\\%%dbpwd%%\\$MYSQL_PASS\\;
s\\%%ALTERNC_LOC%%\\$ALTERNC_LOC\\;
s\\%%warning_message%%\\$WARNING\\;
s\\%%fqdn_lettre%%\\$FQDN_LETTER\\;
s\\%%version%%\\$VERSION\\;
s\\%%ns2_ip%%\\$NS2_IP\\;
2008-04-13 04:35:19 +00:00
EOF
2006-04-26 12:28:53 +00:00
#######################################################################
# Backup configuration files
#
BACKUP_FILE="/var/backups/alternc/etc-original-`date +%Y%m%d-%H%M`.tar.gz"
# Only backup what we are really going to replace
BACKUPS=""
for file in $CONFIG_FILES; do
TEMPLATE="$TEMPLATE_DIR/${file##etc/}"
if [ -f "$TEMPLATE" ]; then
BACKUPS="$BACKUPS $file"
fi
done
2008-10-06 22:20:48 +00:00
# also backup main.cf since we're doing major changes to it
BACKUPS="$BACKUPS etc/postfix/main.cf"
2006-04-26 12:28:53 +00:00
tar -zcf "$BACKUP_FILE" -C / $BACKUPS 2>/dev/null || true
#######################################################################
# Expand templates in the right place
#
2008-04-14 03:10:58 +00:00
echo -n "Expanding variables in configuration files:"
2006-04-26 12:28:53 +00:00
for file in $CONFIG_FILES; do
TEMPLATE="$TEMPLATE_DIR/${file##etc/}"
2008-04-14 03:10:58 +00:00
echo -n " $file"
2006-04-26 12:28:53 +00:00
if [ -f "$TEMPLATE" ]; then
2008-04-13 04:35:19 +00:00
sed -f "$SED_SCRIPT" < $TEMPLATE > /$file
2006-04-26 12:28:53 +00:00
fi
done
2008-04-14 03:10:58 +00:00
echo "."
2008-04-13 04:35:19 +00:00
rm -f $SED_SCRIPT
2006-04-26 12:28:53 +00:00
#######################################################################
# Save installed files to check them during next install
#
tar -zcf "$INSTALLED_CONFIG_TAR" -C / $CONFIG_FILES
########################################################################
# Ad-hoc fixes
#
2007-10-05 14:46:40 +00:00
php="`ls /usr/lib/apache*/*/*php*.so | sed -e 's/^.*libphp\(.\)\.so$/php\1/' | tail -1`"
2007-09-09 19:17:45 +00:00
if [ -x /usr/sbin/apache ]
then
# Enable vhost_alias apache module at the right place (ie: BEFORE mod_alias)
if ! grep -q "vhost_alias_module" /etc/apache/modules.conf
then
sed -i -e 's/^\(LoadModule.*config_log.*\)$/LoadModule vhost_alias_module \/usr\/lib\/apache\/1.3\/mod_vhost_alias.so\n\1/' /etc/apache/modules.conf
fi
2007-09-27 08:18:50 +00:00
echo "LoadModule ${php}_module /usr/lib/apache/1.3/lib${php}.so" | append_no_dupe /etc/apache/modules.conf
echo "LoadModule ${php}_module /usr/lib/apache/1.3/lib${php}.so" | append_no_dupe /etc/apache-ssl/modules.conf
2007-09-09 20:31:35 +00:00
SERVICES="$SERVICES apache apache-ssl"
2007-09-09 19:17:45 +00:00
fi
2007-10-05 14:31:05 +00:00
if [ -x /usr/sbin/apache2 ] && ! ( [ -L /etc/apache2/mods-enabled/vhost_alias.load ] && [ -L /etc/apache2/mods-enabled/$php.load ] )
2007-09-09 19:17:45 +00:00
then
a2enmod vhost_alias
a2enmod $php
2007-09-09 20:31:35 +00:00
SERVICES="$SERVICES apache2"
2007-09-09 19:17:45 +00:00
fi
2006-04-26 12:28:53 +00:00
# Copy postfix *_checks if they do not exist
for file in body_checks header_checks; do
if [ ! -e "/etc/postfix/$file" ]; then
cp /usr/share/alternc/install/$file /etc/postfix
fi
done
# Attribute the correct rights to critical postfix files
if [ -e /etc/postfix/myalias.cf -o -e /etc/postfix/mydomain.cf -o -e /etc/postfix/mygid.cf -o -e /etc/postfix/myvirtual.cf ]; then
chown root:postfix /etc/postfix/my*
chmod 640 /etc/postfix/my*
fi
2008-10-06 22:12:41 +00:00
# configure postfix appropriatly for our needs"
while read line
do
postconf -e $line
done < /etc/alternc/postfix.cf
while read line
do
postconf -e $line
done <<EOF
myhostname = $FQDN
myorigin = $FQDN
EOF
2006-04-26 12:28:53 +00:00
if [ -e /etc/courier/authmysqlrc ] ; then
chown root:root /etc/courier/authmysqlrc
chmod 640 /etc/courier/authmysqlrc
fi
2006-04-26 14:00:52 +00:00
if [ -e /etc/proftpd.conf ] ; then
2007-08-22 22:32:12 +00:00
chmod 640 /etc/proftpd/proftpd.conf
2006-04-26 14:00:52 +00:00
fi
2007-08-26 19:34:17 +00:00
if [ -x /usr/sbin/locale-gen ] ; then
touch /etc/locale.gen
2007-08-26 19:14:51 +00:00
LOCALECHANGED=""
# Add de_DE ISO-8859-1, en_US ISO-8859-1, es_ES ISO-8859-1, fr_FR ISO-8859-1 to the locales :
if ! grep -q "^de_DE ISO-8859-1$" /etc/locale.gen ; then
echo "de_DE ISO-8859-1" >>/etc/locale.gen
LOCALECHANGED=1
fi
if ! grep -q "^en_US ISO-8859-1$" /etc/locale.gen ; then
echo "en_US ISO-8859-1" >>/etc/locale.gen
LOCALECHANGED=1
fi
if ! grep -q "^es_ES ISO-8859-1$" /etc/locale.gen ; then
echo "es_ES ISO-8859-1" >>/etc/locale.gen
LOCALECHANGED=1
fi
if ! grep -q "^fr_FR ISO-8859-1$" /etc/locale.gen ; then
echo "fr_FR ISO-8859-1" >>/etc/locale.gen
LOCALECHANGED=1
fi
if [ "$LOCALECHANGED" ] ; then
locale-gen
fi
fi
2006-04-26 12:28:53 +00:00
#######################################################################
2007-08-26 20:44:53 +00:00
# Reload services
2006-04-26 12:28:53 +00:00
#
2007-09-09 20:31:35 +00:00
for service in $SERVICES postfix bind9 courier-authdaemon \
2006-04-26 12:28:53 +00:00
courier-imap courier-imap-ssl courier-pop courier-pop-ssl \
cron proftpd; do
2007-09-09 20:32:16 +00:00
invoke-rc.d $service reload || true
2006-04-26 12:28:53 +00:00
done
#######################################################################
# Last touches
#
# Creating admin user if needed
2008-04-13 04:35:19 +00:00
HAS_ROOT=`mysql --defaults-file=/etc/alternc/my.cnf -e "SELECT COUNT(*) FROM membres WHERE login = 'admin' OR login = 'root' and su = 1" | tail -1`
2006-04-26 12:28:53 +00:00
if [ "$HAS_ROOT" != "1" ]; then
echo "Creating admin user..."
echo ""
if su - www-data -c /usr/share/alternc/install/newone.php
then
echo "*******************************************"
echo "* *"
echo "* Admin account *"
echo "* ------------ *"
echo "* *"
echo "* user: admin password: admin *"
echo "* *"
echo "* Please change this as soon as possible! *"
echo "* *"
echo "*******************************************"
else
echo "Il a <20> t<EFBFBD> impossible de cr<63> er un nouveau membre alternc. newone.php a retourn<72> un code d'erreur $?. V<> rifiez si la base MySQL, PHP, ainsi que le fichier local.sh sont bien configur<75> s. V<> rifiez aussi si des erreurs ne sont pas apparues plus haut dans l'installation."
fi
fi
2007-08-26 20:44:53 +00:00
# We should restart apaches after all configuration stuff ...
2007-09-27 08:29:11 +00:00
for service in apache apache-ssl apache2 ; do
test -x /etc/init.d/$service && invoke-rc.d $service stop || true
done
for service in apache apache-ssl apache2 ; do
test -x /etc/init.d/$service && invoke-rc.d $service start || true
2007-08-26 20:44:53 +00:00
done