From 3c71fa399705f91baae764a43b436e83f14c4024 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 10 Oct 2012 11:30:15 +0200 Subject: [PATCH] packaging: Add support for reloading systemd services. Signed-off-by: Andreas Schneider Fix bug #9280 - Add support for reloading the daemons using systemctl reload. --- packaging/systemd/nmb.service | 1 + packaging/systemd/smb.service | 1 + packaging/systemd/winbind.service | 1 + 3 files changed, 3 insertions(+) diff --git a/packaging/systemd/nmb.service b/packaging/systemd/nmb.service index a2ecd22d59c..e5e81a1fc74 100644 --- a/packaging/systemd/nmb.service +++ b/packaging/systemd/nmb.service @@ -7,6 +7,7 @@ Type=forking PIDFile=/run/nmbd.pid EnvironmentFile=-/etc/sysconfig/samba ExecStart=/usr/sbin/nmbd $NMBDOPTIONS +ExecReload=/usr/bin/kill -HUP $MAINPID [Install] WantedBy=multi-user.target diff --git a/packaging/systemd/smb.service b/packaging/systemd/smb.service index 70d98420db6..d0d945aae79 100644 --- a/packaging/systemd/smb.service +++ b/packaging/systemd/smb.service @@ -8,6 +8,7 @@ PIDFile=/run/smbd.pid LimitNOFILE=16384 EnvironmentFile=-/etc/sysconfig/samba ExecStart=/usr/sbin/smbd $SMBDOPTIONS +ExecReload=/usr/bin/kill -HUP $MAINPID [Install] WantedBy=multi-user.target diff --git a/packaging/systemd/winbind.service b/packaging/systemd/winbind.service index 9ce1b520419..eff266f0d83 100644 --- a/packaging/systemd/winbind.service +++ b/packaging/systemd/winbind.service @@ -7,6 +7,7 @@ Type=forking PIDFile=/run/winbindd.pid EnvironmentFile=-/etc/sysconfig/samba ExecStart=/usr/sbin/winbindd "$WINBINDOPTIONS" +ExecReload=/usr/bin/kill -HUP $MAINPID [Install] WantedBy=multi-user.target -- 2.11.4.GIT