summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2011-10-27 17:11:19 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-10-28 11:34:27 +0200
commit7d7ba3ba40895090d9bd791f210f89c5d5d2582e (patch)
tree7b7811e7ff0dd925a5f6842cc8b945564a369c8c /packaging
parent6c07505b15e3822cf5fe09b0e32794b6abecbeeb (diff)
downloadsamba-7d7ba3ba40895090d9bd791f210f89c5d5d2582e.tar.gz
samba-7d7ba3ba40895090d9bd791f210f89c5d5d2582e.tar.xz
samba-7d7ba3ba40895090d9bd791f210f89c5d5d2582e.zip
Add systemd service files.
Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Fri Oct 28 11:34:27 CEST 2011 on sn-devel-104
Diffstat (limited to 'packaging')
-rw-r--r--packaging/systemd/nmb.service12
-rw-r--r--packaging/systemd/samba.sysconfig6
-rw-r--r--packaging/systemd/smb.service13
-rw-r--r--packaging/systemd/winbind.service13
4 files changed, 44 insertions, 0 deletions
diff --git a/packaging/systemd/nmb.service b/packaging/systemd/nmb.service
new file mode 100644
index 00000000000..a2ecd22d59c
--- /dev/null
+++ b/packaging/systemd/nmb.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=Samba NMB Daemon
+After=syslog.target network.target
+
+[Service]
+Type=forking
+PIDFile=/run/nmbd.pid
+EnvironmentFile=-/etc/sysconfig/samba
+ExecStart=/usr/sbin/nmbd $NMBDOPTIONS
+
+[Install]
+WantedBy=multi-user.target
diff --git a/packaging/systemd/samba.sysconfig b/packaging/systemd/samba.sysconfig
new file mode 100644
index 00000000000..944b72fcc28
--- /dev/null
+++ b/packaging/systemd/samba.sysconfig
@@ -0,0 +1,6 @@
+# Options to smbd
+SMBDOPTIONS="-D"
+# Options to nmbd
+NMBDOPTIONS="-D"
+# Options for winbindd
+WINBINDOPTIONS=""
diff --git a/packaging/systemd/smb.service b/packaging/systemd/smb.service
new file mode 100644
index 00000000000..7d765db83ce
--- /dev/null
+++ b/packaging/systemd/smb.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Samba SMB Daemon
+After=syslog.target network.target
+
+[Service]
+Type=forking
+PIDFile=/run/smbd.pid
+LimitNOFILE=16384
+EnvironmentFile=-/etc/sysconfig/samba
+ExecStart=/usr/sbin/smbd $SMBDOPTIONS
+
+[Install]
+WantedBy=multi-user.target
diff --git a/packaging/systemd/winbind.service b/packaging/systemd/winbind.service
new file mode 100644
index 00000000000..91f9112a353
--- /dev/null
+++ b/packaging/systemd/winbind.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Samba Winbind Daemon
+Requires=smb.service nmb.service
+After=syslog.target network.target smb.service nmb.service
+
+[Service]
+Type=forking
+PIDFile=/run/winbindd.pid
+EnvironmentFile=-/etc/sysconfig/samba
+ExecStart=/usr/sbin/winbindd "$WINBINDOPTIONS"
+
+[Install]
+WantedBy=multi-user.target