[Pkg-utopia-commits] r576 - packages/unstable/dhcdbd/debian

Riccardo Setti giskard-guest at costa.debian.org
Thu Feb 9 20:18:50 UTC 2006


Author: giskard-guest
Date: 2006-02-09 20:18:49 +0000 (Thu, 09 Feb 2006)
New Revision: 576

Modified:
   packages/unstable/dhcdbd/debian/changelog
   packages/unstable/dhcdbd/debian/dhcdbd.postinst
Log:
* Improved description.  (closes: #350888)
* modifyed dhcdbd.conf, now it will use as valid group 'netdev'. (closes: #351454)
* added the creation of netdev group in dhcdbd.postinst.

Modified: packages/unstable/dhcdbd/debian/changelog
===================================================================
--- packages/unstable/dhcdbd/debian/changelog	2006-02-09 20:16:17 UTC (rev 575)
+++ packages/unstable/dhcdbd/debian/changelog	2006-02-09 20:18:49 UTC (rev 576)
@@ -1,16 +1,16 @@
-dhcdbd (1.10-3) unstable; urgency=low
+dhcdbd (1.10-2) unstable; urgency=low
 
+  [ Micheal Biebl ]
   * Do correctly apply the 01_fix_some_debian_path patch.
   * dhcdbd will now use the same pid and leases files as ifup.
 
- -- Michael Biebl <biebl at teco.edu>  Thu,  9 Feb 2006 17:23:18 +0100
+  [ Riccardo Setti ]
+  * Improved description.  (closes: #350888)
+  * modifyed dhcdbd.conf, now it will use as valid group 'netdev'. (closes: #351454)
+  * added the creation of netdev group in dhcdbd.postinst.
 
-dhcdbd (1.10-2) unstable; urgency=low
+ -- Riccardo Setti <giskard at autistici.org>  Thu,  9 Feb 2006 21:18:21 +0100
 
-  * Improved description.  (closes: #350888) 
-
- -- Riccardo Setti <giskard at autistici.org>  Wed,  1 Feb 2006 18:28:46 +0100
-
 dhcdbd (1.10-1) unstable; urgency=low
 
   * Initial upload to Debian (Closes: #348309)

Modified: packages/unstable/dhcdbd/debian/dhcdbd.postinst
===================================================================
--- packages/unstable/dhcdbd/debian/dhcdbd.postinst	2006-02-09 20:16:17 UTC (rev 575)
+++ packages/unstable/dhcdbd/debian/dhcdbd.postinst	2006-02-09 20:18:49 UTC (rev 576)
@@ -3,11 +3,13 @@
 
 case "$1" in
   configure)
-		#  Ask the bus to reload the config file  		
+		if ! getent group netdev > /dev/null; then
+		addgroup --quiet --system netdev
+		fi
+		#  Ask the bus to reload the config file
 		if [ -x "/etc/init.d/dbus" ]; then
 		invoke-rc.d dbus force-reload || true
 		fi
-					
     ;;
 esac
 




More information about the Pkg-utopia-commits mailing list