diff options
Diffstat (limited to 'examples/var_service/ntpd')
-rwxr-xr-x | examples/var_service/ntpd/log/run | 2 | ||||
-rwxr-xr-x | examples/var_service/ntpd/run | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/var_service/ntpd/log/run b/examples/var_service/ntpd/log/run index 560d1b19f..69d74b73f 100755 --- a/examples/var_service/ntpd/log/run +++ b/examples/var_service/ntpd/log/run @@ -6,7 +6,7 @@ logdir="/var/log/service/`(cd ..;basename $PWD)`" mkdir -p "$logdir" 2>/dev/null chown -R "$user": "$logdir" chmod -R go-rwxst,u+rwX "$logdir" -rm logdir +rm -rf logdir ln -s "$logdir" logdir # make this dir accessible to logger diff --git a/examples/var_service/ntpd/run b/examples/var_service/ntpd/run index 581d231a3..6f2a68188 100755 --- a/examples/var_service/ntpd/run +++ b/examples/var_service/ntpd/run @@ -15,7 +15,7 @@ default_p_opt="-p 0.$pool -p 1.$pool -p 2.$pool -p 3.$pool" # Make sure rundir/ exists mkdir -p "$rundir" 2>/dev/null -chown -R "$user:" "$rundir" +chown -R "$user": "$rundir" chmod -R a=rX "$rundir" rm -rf rundir 2>/dev/null ln -s "$rundir" rundir |