[Pkg-samba-maint] r2252 - in branches/samba/experimental: . debian

vorlon at alioth.debian.org vorlon at alioth.debian.org
Fri Dec 26 18:29:54 UTC 2008


tags 299618 pending
thanks

Author: vorlon
Date: 2008-12-26 18:29:54 +0000 (Fri, 26 Dec 2008)
New Revision: 2252

Modified:
   branches/samba/experimental/
   branches/samba/experimental/debian/changelog
   branches/samba/experimental/debian/samba-common.dhcp
Log:
Handle clearing out netbios settings whenever the DHCP server has gone
away.  Closes: #299618.


Property changes on: branches/samba/experimental
___________________________________________________________________
Name: bzr:revision-info
   + timestamp: 2008-12-26 12:27:17.573999882 -0600
committer: Steve Langasek <vorlon at debian.org>
properties: 
	branch-nick: samba.experimental
	bugs: http://bugs.debian.org/299618 fixed

Name: bzr:file-ids
   + debian/changelog	2240 at fc4039ab-9d04-0410-8cac-899223bdd6b0:branches%2Fsamba%2Fexperimental:debian%2Fchangelog
debian/samba-common.dhcp	2240 at fc4039ab-9d04-0410-8cac-899223bdd6b0:branches%2Fsamba%2Fexperimental:debian%2Fsamba-common.dhcp

Name: bzr:text-parents
   + 
Name: bzr:revision-id:v3-list-QlpoOTFBWSZTWTAzeBkAAA5RgAAQABC6yR4AIAAxTAAA0nqA9RtJaDAREhvTa9c1PHSHfi7kinChIGBm8DI.
   + 22 vorlon at debian.org-20081226182717-yqslxhihd1ntha57


Modified: branches/samba/experimental/debian/changelog
===================================================================
--- branches/samba/experimental/debian/changelog	2008-12-24 00:36:10 UTC (rev 2251)
+++ branches/samba/experimental/debian/changelog	2008-12-26 18:29:54 UTC (rev 2252)
@@ -1,3 +1,10 @@
+samba (2:3.3.0~rc2-2) UNRELEASED; urgency=low
+
+  * Handle clearing out netbios settings whenever the DHCP server has gone
+    away.  Closes: #299618.
+
+ -- Steve Langasek <vorlon at debian.org>  Fri, 26 Dec 2008 12:23:23 -0600
+
 samba (2:3.3.0~rc2-1) experimental; urgency=low
 
   * New upstream release

Modified: branches/samba/experimental/debian/samba-common.dhcp
===================================================================
--- branches/samba/experimental/debian/samba-common.dhcp	2008-12-24 00:36:10 UTC (rev 2251)
+++ branches/samba/experimental/debian/samba-common.dhcp	2008-12-26 18:29:54 UTC (rev 2252)
@@ -5,12 +5,13 @@
 netbios_setup() {
 	# No need to continue if we're called with an unsupported option
 
-	if [ "$reason" != BOUND ] && [ "$reason" != RENEW ] \
-	   && [ "$reason" != REBIND ] && [ "$reason" != REBOOT ] \
-	   && [ "$reason" != EXPIRE ] && [ "$reason" != FAIL ]
-	then
+	case $reason in
+	BOUND|RENEW|REBIND|REBOOT|EXPIRE|FAIL|RELEASE|STOP)
+		;;
+	*)
 		return
-	fi
+		;;
+	esac
 
 	umask 022
 




More information about the Pkg-samba-maint mailing list