~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to vivid/etc/init/winbind.conf

  • Committer: Dimitri John Ledkov
  • Date: 2014-11-19 12:58:41 UTC
  • Revision ID: dimitri.j.ledkov@intel.com-20141119125841-98dr37roy8dvcv3b
auto update

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
description "Samba Winbind"
 
2
author      "David Weber"
 
3
 
 
4
start on (local-filesystems and net-device-up IFACE!=lo)
 
5
stop on runlevel [!2345]
 
6
 
 
7
respawn
 
8
 
 
9
pre-start script
 
10
        test -x /usr/sbin/winbindd || exit 0
 
11
        mkdir -p /var/run/samba/winbindd_privileged
 
12
        chgrp winbindd_priv /var/run/samba/winbindd_privileged
 
13
        chmod 0750 /var/run/samba/winbindd_privileged
 
14
end script
 
15
 
 
16
script
 
17
    [ -r /etc/default/winbind ] && . /etc/default/winbind
 
18
    exec /usr/sbin/winbindd -F $WINBINDD_OPTS
 
19
end script