From ce3ff7e328483dffdae6ae2914924bc2380db67e Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 11 Dec 2015 00:37:13 +0100 Subject: hook-scripts: fix S30Samba scripts on systemd systems /etc/init.d/smb does not exist on systemd systems. Using "service smb " is the portable way. It calls init scripts on sysv systems, and redirects to systemctl on systemd systems. Change-Id: I7146c9998a51d8b170d3321f3477e92704ae7615 BUG: 1290604 Signed-off-by: Michael Adam Reviewed-on: http://review.gluster.org/12945 Tested-by: Gluster Build System Reviewed-by: Anoop C S Tested-by: NetBSD Build System Reviewed-by: Niels de Vos --- extras/hook-scripts/stop/pre/S30samba-stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extras/hook-scripts/stop/pre') diff --git a/extras/hook-scripts/stop/pre/S30samba-stop.sh b/extras/hook-scripts/stop/pre/S30samba-stop.sh index 8950eea436e..62cf7d1e0d2 100755 --- a/extras/hook-scripts/stop/pre/S30samba-stop.sh +++ b/extras/hook-scripts/stop/pre/S30samba-stop.sh @@ -61,7 +61,7 @@ function sighup_samba () { then kill -HUP $pid; else - /etc/init.d/smb condrestart + service smb condrestart fi } -- cgit