mirror of
https://github.com/unraid/webgui.git
synced 2026-02-26 12:18:56 -06:00
13 lines
253 B
Bash
Executable File
13 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
SERVICES="sshd avahidaemon samba rpc nfsd ntpd nginx"
|
|
job=/tmp/atjob.tmp
|
|
|
|
[[ -n $1 && -e $job ]] && exit 0
|
|
for cmd in $SERVICES; do
|
|
if /etc/rc.d/rc.$cmd update; then
|
|
/etc/rc.d/rc.$cmd reload >/dev/null 2>&1
|
|
fi
|
|
done
|
|
touch $job
|
|
exit 0
|