From a102b1533984b638094727f36f64a56ed5586553 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sun, 1 Mar 2009 22:11:58 -0500 Subject: [PATCH] moved set -e from the shebang line to an explicit setting in maintainer scripts to pacify lintian --pedantic. --- packaging/debian/monkeysphere.postinst | 4 +++- packaging/debian/monkeysphere.postrm | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/packaging/debian/monkeysphere.postinst b/packaging/debian/monkeysphere.postinst index bbb02cf..6b12ee8 100755 --- a/packaging/debian/monkeysphere.postinst +++ b/packaging/debian/monkeysphere.postinst @@ -1,10 +1,12 @@ -#!/bin/sh -e +#!/bin/sh # postinst script for monkeysphere # Author: Jameson Rollins # Copyright 2008-2009 +set -e + VARLIB="/var/lib/monkeysphere" case $1 in diff --git a/packaging/debian/monkeysphere.postrm b/packaging/debian/monkeysphere.postrm index 878b913..d789012 100755 --- a/packaging/debian/monkeysphere.postrm +++ b/packaging/debian/monkeysphere.postrm @@ -1,10 +1,12 @@ -#!/bin/sh -e +#!/bin/sh # postrm script for monkeysphere # Author: Jameson Rollins # Copyright 2008-2009 +set -e + case $1 in purge) # delete monkeysphere user -- 2.25.1