mirror of
https://github.com/unraid/webgui.git
synced 2026-01-24 02:18:49 -06:00
11 lines
243 B
Bash
Executable File
11 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
SERVICES="sshd avahidaemon samba rpc nfsd ntpd nginx"
|
|
|
|
for cmd in $SERVICES; do
|
|
[[ $cmd == $1 ]] && option=renew || option=reload
|
|
if /etc/rc.d/rc.$cmd update; then
|
|
/etc/rc.d/rc.$cmd $option >/dev/null 2>&1
|
|
fi
|
|
done
|
|
exit 0
|