summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorMathieu Parent <math.parent@gmail.com>2016-05-12 22:16:24 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-01-14 17:38:26 +0100
commitc69938ef5cb9ee49565fae834a25541f6a5da0a8 (patch)
tree9ed0bcb4ab5177dcd2cd3be99e73051e5a283617 /packaging
parenta653b62ad71b65c280ee4ba6bfbb560ac3b1f90e (diff)
downloadsamba-c69938ef5cb9ee49565fae834a25541f6a5da0a8.tar.gz
systemd: Fix kill path
Bug-Debian: https://bugs.debian.org/828730 BUG: https://bugzilla.samba.org/show_bug.cgi?id=12402 Signed-off-by: Mathieu Parent <math.parent@gmail.com> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org>
Diffstat (limited to 'packaging')
-rw-r--r--packaging/systemd/nmb.service.in2
-rw-r--r--packaging/systemd/samba.service.in2
-rw-r--r--packaging/systemd/smb.service.in2
-rw-r--r--packaging/systemd/winbind.service.in2
4 files changed, 4 insertions, 4 deletions
diff --git a/packaging/systemd/nmb.service.in b/packaging/systemd/nmb.service.in
index b5c20192a19..a30812320c0 100644
--- a/packaging/systemd/nmb.service.in
+++ b/packaging/systemd/nmb.service.in
@@ -10,7 +10,7 @@ NotifyAccess=all
PIDFile=@PIDDIR@/nmbd.pid
EnvironmentFile=-@SYSCONFDIR@/sysconfig/samba
ExecStart=@SBINDIR@/nmbd --foreground --no-process-group $NMBDOPTIONS
-ExecReload=/usr/bin/kill -HUP $MAINPID
+ExecReload=/bin/kill -HUP $MAINPID
LimitCORE=infinity
@systemd_nmb_extra@
diff --git a/packaging/systemd/samba.service.in b/packaging/systemd/samba.service.in
index fcbb27fc225..f8ea527536b 100644
--- a/packaging/systemd/samba.service.in
+++ b/packaging/systemd/samba.service.in
@@ -11,7 +11,7 @@ PIDFile=@PIDDIR@/samba.pid
LimitNOFILE=16384
EnvironmentFile=-@SYSCONFDIR@/sysconfig/samba
ExecStart=@SBINDIR@/samba --foreground --no-process-group $SAMBAOPTIONS
-ExecReload=/usr/bin/kill -HUP $MAINPID
+ExecReload=/bin/kill -HUP $MAINPID
@systemd_samba_extra@
[Install]
diff --git a/packaging/systemd/smb.service.in b/packaging/systemd/smb.service.in
index fabe3f3d7f9..dcaf7ef0fde 100644
--- a/packaging/systemd/smb.service.in
+++ b/packaging/systemd/smb.service.in
@@ -10,7 +10,7 @@ PIDFile=@PIDDIR@/smbd.pid
LimitNOFILE=16384
EnvironmentFile=-@SYSCONFDIR@/sysconfig/samba
ExecStart=@SBINDIR@/smbd --foreground --no-process-group $SMBDOPTIONS
-ExecReload=/usr/bin/kill -HUP $MAINPID
+ExecReload=/bin/kill -HUP $MAINPID
LimitCORE=infinity
@systemd_smb_extra@
diff --git a/packaging/systemd/winbind.service.in b/packaging/systemd/winbind.service.in
index 703fd96820f..c28d94ca950 100644
--- a/packaging/systemd/winbind.service.in
+++ b/packaging/systemd/winbind.service.in
@@ -9,7 +9,7 @@ NotifyAccess=all
PIDFile=@PIDDIR@/winbindd.pid
EnvironmentFile=-@SYSCONFDIR@/sysconfig/samba
ExecStart=@SBINDIR@/winbindd --foreground --no-process-group "$WINBINDOPTIONS"
-ExecReload=/usr/bin/kill -HUP $MAINPID
+ExecReload=/bin/kill -HUP $MAINPID
LimitCORE=infinity
@systemd_winbind_extra@