manual propagation of [3145] in stable-3.0

This commit is contained in:
Benjamin Sonntag 2013-02-27 08:29:18 +00:00
parent 672aa45baa
commit 2078dc7f84
2 changed files with 10 additions and 3 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
alternc (3.0+nmu1) stable; urgency=low
alternc (3.0.1) stable; urgency=low
* r4112 : bugfixing upgrade script 3.0.0~3.php to add the phpmyadmin special user to table dbuser

View File

@ -430,10 +430,17 @@ setfacl -b -k -m d:g:alterncpanel:rw- -m g:alterncpanel:rw- "$ALTERNC_LOC/html/"
if [ ! -e "/var/log/alternc/bureau.log" ]; then
test -d "/var/log/alternc/" || mkdir -p "/var/log/alternc/"
touch "/var/log/alternc/bureau.log"
chmod 640 "/var/log/alternc/bureau.log"
chown alterncpanel:adm /var/log/alternc/bureau.log
fi
if [ ! -e "/var/log/alternc/update_domains.log" ]; then
test -d "/var/log/alternc/" || mkdir -p "/var/log/alternc/"
touch "/var/log/alternc/update_domains.log"
fi
# Be sure of the owner of the logs files
chmod 640 /var/log/alternc/bureau.log /var/log/alternc/update_domains.log
chown alterncpanel:adm /var/log/alternc/bureau.log /var/log/alternc/update_domains.log
# Creating admin user if needed
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`