This commit is contained in:
Alan Garcia 2013-06-13 12:12:45 +00:00
parent d3bed64ed5
commit a945fef25c
2 changed files with 34 additions and 0 deletions

1
.gitattributes vendored
View File

@ -548,6 +548,7 @@ install/upgrades/3.0.0~3.php -text
install/upgrades/3.0.0~4.sh -text
install/upgrades/3.0.1.php -text
install/upgrades/3.0.3~a.sql -text
install/upgrades/3.0.3~b.sh -text
install/upgrades/README -text
lang/.svnignore -text
lang/README -text

33
install/upgrades/3.0.3~b.sh Executable file
View File

@ -0,0 +1,33 @@
#!/bin/bash
# Upgrading script to AlternC 3.0.3
CONFIG_FILE="/usr/lib/alternc/functions.sh"
PATH=/sbin:/bin:/usr/sbin:/usr/bin
umask 022
if [ ! -r "$CONFIG_FILE" ]; then
echo "Can't access $CONFIG_FILE."
exit 1
fi
if [ `id -u` -ne 0 ]; then
echo "fixperms.sh must be launched as root"
exit 1
fi
. "$CONFIG_FILE"
## This part create TMP dir if don't exist
function create_tmp_dir() {
read LOGIN || true
while [ "$LOGIN" ]; do
echo "Check tmp directory for $LOGIN"
REP="$(get_html_path_by_name $LOGIN )/tmp/"
[[ "$REP" != "/tmp/" ]] && ( test -d "$REP" || mkdir $REP )
read LOGIN || true
done
}
mysql_query "select login from membres order by login;" | create_tmp_dir