packaging: Add NetworkManager dispatcher script for winbind.
authorAndreas Schneider <asn@cryptomilk.org>
Fri, 26 Oct 2012 10:46:21 +0000 (12:46 +0200)
committerDavid Disseldorp <ddiss@samba.org>
Tue, 30 Oct 2012 12:17:02 +0000 (13:17 +0100)
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Autobuild-User(master): David Disseldorp <ddiss@samba.org>
Autobuild-Date(master): Tue Oct 30 13:17:02 CET 2012 on sn-devel-104

packaging/NetworkManager/30-winbind-systemd [new file with mode: 0755]
packaging/NetworkManager/README [new file with mode: 0644]

diff --git a/packaging/NetworkManager/30-winbind-systemd b/packaging/NetworkManager/30-winbind-systemd
new file mode 100755 (executable)
index 0000000..af0edf9
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+winbind_is_active=$(/bin/systemctl is-active winbind.service)
+test "${winbind_is_active}" = "active" || exit 0
+
+winbind_offline_logon=$(testparm -s --parameter-name "winbind offline logon" 2>/dev/null)
+test "${winbind_offline_logon}" = "Yes" || exit 0
+
+case "$2" in
+       up|vpn-up)
+               nmb_is_active=$(/bin/systemctl is-active nmb.service)
+               if test "${nmb_is_active}" = "active"; then
+                       /bin/systemctl try-restart nmb.service || :
+               fi
+               /usr/bin/smbcontrol winbind online || :
+       ;;
+       down)
+               /usr/bin/smbcontrol winbind offline
+       ;;
+esac
diff --git a/packaging/NetworkManager/README b/packaging/NetworkManager/README
new file mode 100644 (file)
index 0000000..0db8be6
--- /dev/null
@@ -0,0 +1,6 @@
+This directory includes files for the dispatcher of NetworkManager. The files
+need to be copied to /etc/NetworkManager/dispatcher.d/ and will be automatically
+called if a network interface goes up or down.
+
+30-winbind-systemd: This will set winbind into offline mode if you have winbind
+                    offline logon turned on.