mirror of
https://github.com/myvesta/vesta
synced 2025-08-21 05:44:08 -07:00
commit
83e87a59f3
2 changed files with 15 additions and 13 deletions
|
@ -393,13 +393,15 @@ if [ ! -z "$DB_SYSTEM" ] && [ "$DB" != '*' ]; then
|
||||||
|
|
||||||
dump="$tmpdir/db/$database/$database.$TYPE.sql"
|
dump="$tmpdir/db/$database/$database.$TYPE.sql"
|
||||||
grants="$tmpdir/db/$database/conf/$database.$TYPE.$DBUSER"
|
grants="$tmpdir/db/$database/conf/$database.$TYPE.$DBUSER"
|
||||||
case $TYPE in
|
if [ ! -f "$dump" ]; then
|
||||||
mysql) dump_mysql_database ;;
|
case $TYPE in
|
||||||
pgsql) dump_pgsql_database ;;
|
mysql) dump_mysql_database ;;
|
||||||
esac
|
pgsql) dump_pgsql_database ;;
|
||||||
|
esac
|
||||||
|
|
||||||
# Compress dump
|
# Compress dump
|
||||||
gzip -$BACKUP_GZIP $dump
|
gzip -$BACKUP_GZIP $dump
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Print total
|
# Print total
|
||||||
|
|
|
@ -626,15 +626,15 @@ fi
|
||||||
# Updating system
|
# Updating system
|
||||||
apt-get update
|
apt-get update
|
||||||
|
|
||||||
# Disabling daemon autostart /usr/share/doc/sysv-rc/README.policy-rc.d.gz
|
# Disabling daemon autostart on apt-get install
|
||||||
#echo -e '#!/bin/sh \nexit 101' > /usr/sbin/policy-rc.d
|
echo -e '#!/bin/sh\nexit 101' > /usr/sbin/policy-rc.d
|
||||||
#chmod a+x /usr/sbin/policy-rc.d
|
chmod a+x /usr/sbin/policy-rc.d
|
||||||
|
|
||||||
# Installing apt packages
|
# Installing apt packages
|
||||||
apt-get -y install $software
|
apt-get -y install $software
|
||||||
check_result $? "apt-get install failed"
|
check_result $? "apt-get install failed"
|
||||||
|
|
||||||
# Restoring policy
|
# Restoring autostart policy
|
||||||
rm -f /usr/sbin/policy-rc.d
|
rm -f /usr/sbin/policy-rc.d
|
||||||
|
|
||||||
|
|
||||||
|
@ -912,7 +912,7 @@ if [ -z "$ZONE" ]; then
|
||||||
ZONE='UTC'
|
ZONE='UTC'
|
||||||
fi
|
fi
|
||||||
for pconf in $(find /etc/php* -name php.ini); do
|
for pconf in $(find /etc/php* -name php.ini); do
|
||||||
sed -i "s/;date.timezone =/date.timezone = $ZONE/g" $pconf
|
sed -i "s%;date.timezone =%date.timezone = $ZONE%g" $pconf
|
||||||
sed -i 's%_open_tag = Off%_open_tag = On%g' $pconf
|
sed -i 's%_open_tag = Off%_open_tag = On%g' $pconf
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -1129,8 +1129,8 @@ if [ "$exim" = 'yes' ] && [ "$mysql" = 'yes' ]; then
|
||||||
fi
|
fi
|
||||||
cp -f $vestacp/roundcube/main.inc.php /etc/roundcube/
|
cp -f $vestacp/roundcube/main.inc.php /etc/roundcube/
|
||||||
cp -f $vestacp/roundcube/db.inc.php /etc/roundcube/
|
cp -f $vestacp/roundcube/db.inc.php /etc/roundcube/
|
||||||
chmod 640 /etc/roundcube/debian-db-roundcube.php
|
chmod 640 /etc/roundcube/debian-db*
|
||||||
chown root:www-data /etc/roundcube/debian-db-roundcube.php
|
chown root:www-data /etc/roundcube/debian-db*
|
||||||
cp -f $vestacp/roundcube/vesta.php \
|
cp -f $vestacp/roundcube/vesta.php \
|
||||||
/usr/share/roundcube/plugins/password/drivers/
|
/usr/share/roundcube/plugins/password/drivers/
|
||||||
cp -f $vestacp/roundcube/config.inc.php /etc/roundcube/plugins/password/
|
cp -f $vestacp/roundcube/config.inc.php /etc/roundcube/plugins/password/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue