From 8058a212355bb5efa2a30f95214487f84ec0faa2 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 10 Oct 2012 11:30:15 +0200 Subject: [PATCH 3/3] packaging: Add support for reloading systemd services. Signed-off-by: Andreas Schneider --- 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 a2ecd22..e5e81a1 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 70d9842..d0d945a 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 9ce1b52..eff266f 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 -- 1.7.12.2