diff options
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 8 | ||||
| -rw-r--r-- | debian/network-manager.postinst | 5 | ||||
| -rw-r--r-- | debian/network-manager.preinst | 5 |
3 files changed, 15 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 00c2442c..9ec1b2c6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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@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 @@ network-manager (0.7.0.100-1) unstable; urgency=low - 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. diff --git a/debian/network-manager.postinst b/debian/network-manager.postinst index 7666aa1f..f91886f5 100644 --- a/debian/network-manager.postinst +++ b/debian/network-manager.postinst @@ -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: diff --git a/debian/network-manager.preinst b/debian/network-manager.preinst index 9a18984e..5bfef656 100644 --- a/debian/network-manager.preinst +++ b/debian/network-manager.preinst @@ -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: |