From f6adbe5d679fa2473d999a52ea9e887eb726f610 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 25 Jan 2006 15:12:18 +0000 Subject: r13132: Old fix from Lars tx (This used to be commit 4488e1debb00f6e3b53c71826a91bae001250902) --- packaging/Debian/debian-unstable/samba-common.dhcp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'packaging/Debian') diff --git a/packaging/Debian/debian-unstable/samba-common.dhcp b/packaging/Debian/debian-unstable/samba-common.dhcp index 3b5a05ff57..38743a4568 100644 --- a/packaging/Debian/debian-unstable/samba-common.dhcp +++ b/packaging/Debian/debian-unstable/samba-common.dhcp @@ -1,6 +1,7 @@ #!/bin/sh SAMBA_DHCP_CONF=/etc/samba/dhcp.conf +SAMBA_DHCP_CONF_INFO_FILE="" netbios_setup() { # No need to continue if we're called with an unsupported option @@ -15,6 +16,7 @@ netbios_setup() { # Nor should we continue if no settings have changed if [ "$new_netbios_name_servers" = "$old_netbios_name_servers" ] \ && [ "$new_netbios_scope" = "$old_netbios_scope" ] + && [ -f $SAMBA_DHCP_CONF ] then return fi @@ -33,6 +35,8 @@ netbios_setup() { done echo -n > $SAMBA_DHCP_CONF + test -n "$SAMBA_DHCP_CONF_INFO_FILE" -a -f "$SAMBA_DHCP_CONF_INFO_FILE" && \ + cat "$SAMBA_DHCP_CONF_INFO_FILE" >> $SAMBA_DHCP_CONF # If we're updating on failure/expire, AND there are no WINS # servers for other interfaces, leave the file empty. -- cgit