update...dir works fine now
This commit is contained in:
parent
9f23dbddfd
commit
7506a3c454
1 changed files with 4 additions and 4 deletions
|
@ -71,8 +71,8 @@ update_include_conf_dir()
|
|||
# if a webdav alias is given but no corresponding mount dir exists
|
||||
# then remove the includefile
|
||||
find "$APACHE_CONF_DIR" -type f -name "*.conf" | while read fname
|
||||
do mdir=$(head -1 "$fname" | cut -f 4 -d '"')
|
||||
test ! -d "$mdir" && rm "$fname"
|
||||
do mdir=$(head -1 "$fname" | cut -f 4 -d '"')
|
||||
test ! -d "$mdir" && rm "$fname"
|
||||
done
|
||||
}
|
||||
|
||||
|
@ -96,13 +96,13 @@ case "$event" in
|
|||
vol_name="$3"
|
||||
mountdir="$5"
|
||||
echo "$APACHE_SHARE_TEMPLATE" | sed s\#_SHARE_DIR_\#"$mountdir"\#g | sed s\#_VOLUME_NAME_\#"$vol_name"\#g > ${APACHE_CONF_DIR}/${vol_name}.conf
|
||||
#update_include_conf_dir
|
||||
update_include_conf_dir
|
||||
send_reload_command
|
||||
;;
|
||||
preumount )
|
||||
vol_name="$3"
|
||||
rm "$APACHE_CONF_DIR/${vol_name}.conf" || true
|
||||
#update_include_conf_dir
|
||||
update_include_conf_dir
|
||||
send_reload_command
|
||||
;;
|
||||
shutdown | bootup )
|
||||
|
|
Loading…
Reference in a new issue