Fix #1500
This commit is contained in:
parent
2850d06480
commit
364a97265a
|
@ -499,6 +499,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/3.1.0~a.sql -text
|
||||
install/upgrades/3.1.0~b.php -text
|
||||
install/upgrades/README -text
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue