diff options
-rwxr-xr-x | ctdb/config/events.d/50.samba | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ctdb/config/events.d/50.samba b/ctdb/config/events.d/50.samba index a1f99fbb24..415b89f4a6 100755 --- a/ctdb/config/events.d/50.samba +++ b/ctdb/config/events.d/50.samba @@ -270,6 +270,13 @@ case "$1" in } ;; + takeip|releaseip) + iface=$2 + ip=$3 + maskbits=$4 + + smbcontrol winbindd ip-dropped $ip >/dev/null 2>/dev/null + ;; *) ctdb_standard_event_handler "$@" ;; |