[arch-commits] Commit in samba/trunk (PKGBUILD samba.conf.d samba.service)

Tobias Powalowski tpowa at nymeria.archlinux.org
Mon May 6 12:15:16 UTC 2013


    Date: Monday, May 6, 2013 @ 14:15:15
  Author: tpowa
Revision: 184348

upgpkg: samba 4.0.5-2

fix #34978 add samba.service for AD

Added:
  samba/trunk/samba.service
Modified:
  samba/trunk/PKGBUILD
  samba/trunk/samba.conf.d

---------------+
 PKGBUILD      |   17 ++++++++++++-----
 samba.conf.d  |   25 ++++++++++++++++++-------
 samba.service |   14 ++++++++++++++
 3 files changed, 44 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2013-05-06 11:51:17 UTC (rev 184347)
+++ PKGBUILD	2013-05-06 12:15:15 UTC (rev 184348)
@@ -15,7 +15,7 @@
 # to append 'a','b',etc to their subsequent releases, which pamcan
 # misconstrues as alpha, beta, etc.  Bad samba!
 _realver=4.0.5
-pkgrel=1
+pkgrel=2
 arch=(i686 x86_64)
 url="http://www.samba.org"
 license=('GPL3')
@@ -26,6 +26,8 @@
         samba.logrotate
         swat.xinetd
         samba.pam
+        samba.service
+        samba.conf.d
         smbd.service
         smbd.socket
         nmbd.service
@@ -208,10 +210,12 @@
 
   # install systemd files
   install -d -m755 ${pkgdir}/usr/lib/systemd/system
-  for i in smbd nmbd swat winbindd; do
-    install -m644 ${srcdir}/*.service ${pkgdir}/usr/lib/systemd/system/
-    install -m644 ${srcdir}/*.socket ${pkgdir}/usr/lib/systemd/system/
-  done
+  #for i in smbd nmbd swat winbindd; do
+  install -m644 ${srcdir}/*.service ${pkgdir}/usr/lib/systemd/system/
+  install -m644 ${srcdir}/*.socket ${pkgdir}/usr/lib/systemd/system/
+  install -d -m755  ${pkgdir}/etc/conf.d
+  install -m644 ${srcdir}/samba.conf.d ${pkgdir}/etc/conf.d/samba
+  #done
   # create ephemeral dirs via tmpfiles rather than shipping them in package
   install -D -m644 ${srcdir}/samba.conf ${pkgdir}/usr/lib/tmpfiles.d/samba.conf
   # install sample smb.conf
@@ -240,10 +244,13 @@
   # copy ldap example
   install -D -m644 ${srcdir}/samba-${_realver}/examples/LDAP/samba.schema ${pkgdir}/usr/share/doc/samba/examples/LDAP/samba.schema
 }
+
 md5sums=('58ec2fec08872b72f8fd526f2da20a9e'
          '5697da77590ec092cc8a883bae06093c'
          'a4bbfa39fee95bba2e7ad6b535fae7e6'
          '96f82c38f3f540b53f3e5144900acf17'
+         '5602ba59bc60502c99e6d5a5ae16aecf'
+         '6c447748a064d631435dbef0a3dcf32f'
          'd0b18dd7f5fafc8d25cb3a7c37c6d920'
          'a78b9aa93eb14b0ac445897395693225'
          '90845b89f2321cb19c0b13f385f1782a'

Modified: samba.conf.d
===================================================================
--- samba.conf.d	2013-05-06 11:51:17 UTC (rev 184347)
+++ samba.conf.d	2013-05-06 12:15:15 UTC (rev 184348)
@@ -1,7 +1,18 @@
-#
-# Configuration for the samba init script
-#
-
-# space separated list of daemons to launch
-SAMBA_DAEMONS=(smbd nmbd)
-#SAMBA_DAEMONS=(smbd nmbd winbindd)
+## Path:           Network/Samba
+## Description:    Samba process options
+## Type:           string
+## Default:        ""
+## ServiceRestart: samba
+SAMBAOPTIONS=""
+## Type:           string
+## Default:        ""
+## ServiceRestart: smb
+SMBDOPTIONS=""
+## Type:           string
+## Default:        ""
+## ServiceRestart: nmb
+NMBDOPTIONS=""
+## Type:           string
+## Default:        ""
+## ServiceRestart: winbind
+WINBINDOPTIONS=""

Added: samba.service
===================================================================
--- samba.service	                        (rev 0)
+++ samba.service	2013-05-06 12:15:15 UTC (rev 184348)
@@ -0,0 +1,14 @@
+[Unit]
+Description=Samba AD Daemon
+After=syslog.target network.target
+
+[Service]
+Type=forking
+PIDFile=/var/run/samba.pid
+LimitNOFILE=16384
+EnvironmentFile=-/etc/conf.d/samba
+ExecStart=/usr/sbin/samba $SAMBAOPTIONS
+ExecReload=/usr/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target




More information about the arch-commits mailing list