diff options
-rwxr-xr-x | packaging/NetworkManager/30-winbind-systemd | 20 | ||||
-rw-r--r-- | packaging/NetworkManager/README | 6 |
2 files changed, 26 insertions, 0 deletions
diff --git a/packaging/NetworkManager/30-winbind-systemd b/packaging/NetworkManager/30-winbind-systemd new file mode 100755 index 0000000000..af0edf9747 --- /dev/null +++ b/packaging/NetworkManager/30-winbind-systemd @@ -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 index 0000000000..0db8be666f --- /dev/null +++ b/packaging/NetworkManager/README @@ -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. |