[Pkg-utopia-commits] r3062 - in /packages/unstable/networkmanager/debian: changelog network-manager.postinst network-manager.preinst

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Thu Apr 9 07:31:00 UTC 2009


Author: biebl
Date: Thu Apr  9 07:31:00 2009
New Revision: 3062

URL: http://svn.debian.org/wsvn/pkg-utopia/?sc=1&rev=3062
Log:
* Use set -e instead of #!/bin/sh -e for all maintainer scripts.
* debian/network-manager.dirs

Modified:
    packages/unstable/networkmanager/debian/changelog
    packages/unstable/networkmanager/debian/network-manager.postinst
    packages/unstable/networkmanager/debian/network-manager.preinst

Modified: packages/unstable/networkmanager/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/networkmanager/debian/changelog?rev=3062&op=diff
==============================================================================
--- packages/unstable/networkmanager/debian/changelog (original)
+++ packages/unstable/networkmanager/debian/changelog Thu Apr  9 07:31:00 2009
@@ -1,3 +1,9 @@
+network-manager (0.7.0.100-2) UNRELEASED; urgency=low
+
+  * Use set -e instead of #!/bin/sh -e for all maintainer scripts.
+
+ -- Michael Biebl <biebl at debian.org>  Wed, 08 Apr 2009 08:02:10 +0200
+
 network-manager (0.7.0.100-1) unstable; urgency=low
 
   * New upstream release (0.7.1 rc4).
@@ -9,7 +15,7 @@
     - Move the old pid file from /var/run/NetworkManager to /var/run on
       upgrades so the daemon can be stopped correctly in postinst and the
       obsolete run directory is removed automatically.
-  * debian/network-manager.dirs,init
+  * debian/network-manager.dirs
     - Do no longer install the /var/run/NetworkManager directory.
   * debian/network-manager.init
     - Store the NetworkManager pid file directly in /var/run.

Modified: packages/unstable/networkmanager/debian/network-manager.postinst
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/networkmanager/debian/network-manager.postinst?rev=3062&op=diff
==============================================================================
--- packages/unstable/networkmanager/debian/network-manager.postinst (original)
+++ packages/unstable/networkmanager/debian/network-manager.postinst Thu Apr  9 07:31:00 2009
@@ -1,4 +1,7 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
+
 # This script can be called in the following ways:
 #
 # After the package was installed:

Modified: packages/unstable/networkmanager/debian/network-manager.preinst
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/networkmanager/debian/network-manager.preinst?rev=3062&op=diff
==============================================================================
--- packages/unstable/networkmanager/debian/network-manager.preinst (original)
+++ packages/unstable/networkmanager/debian/network-manager.preinst Thu Apr  9 07:31:00 2009
@@ -1,4 +1,7 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
+
 # This script can be called in the following ways:
 #
 # Before the package is installed:




More information about the Pkg-utopia-commits mailing list