Partial fix of #1466

A merger avec branche stable 3.0
This commit is contained in:
Alan Garcia 2013-02-27 08:18:32 +00:00
parent 47dfb1ba01
commit ca5fbbf501
1 changed files with 4 additions and 4 deletions

View File

@ -460,17 +460,17 @@ find $ALTERNC_HTML -maxdepth 1 -type d -exec setfacl -b -k -m d:g:alterncpanel:r
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"
chmod 640 "/var/log/alternc/update_domains.log"
chown alterncpanel:adm /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`