From: ian Date: Sat, 1 Nov 2003 14:59:30 +0000 (+0000) Subject: @@ -1,3 +1,9 @@ X-Git-Tag: debian_version_1_0_3-2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=userv.git;a=commitdiff_plain;h=bdd946ea99a0d6d8fe0898ccdf0eec34aa63fcbe @@ -1,3 +1,9 @@ +userv (1.0.3-0.0.99.1) unstable; urgency=low + + * type -p invoke-rc.d changed to type, in postinst and prerm. + + -- + userv (1.0.3) unstable; urgency=medium Bugfixes: --- diff --git a/debian/changelog b/debian/changelog index 33f676a..967f46b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +userv (1.0.3-0.0.99.1) unstable; urgency=low + + * type -p invoke-rc.d changed to type, in postinst and prerm. + + -- + userv (1.0.3) unstable; urgency=medium Bugfixes: diff --git a/debian/postinst b/debian/postinst index 0341112..583b1b7 100644 --- a/debian/postinst +++ b/debian/postinst @@ -2,7 +2,7 @@ set -e update-rc.d userv defaults 19 50 > /dev/null -if type -p invoke-rc.d >/dev/null 2>&1; then +if type invoke-rc.d >/dev/null 2>&1; then invoke-rc.d userv start else /etc/init.d/userv start diff --git a/debian/prerm b/debian/prerm index fb21d38..c40e404 100644 --- a/debian/prerm +++ b/debian/prerm @@ -1,6 +1,6 @@ #!/bin/sh set -e -if type -p invoke-rc.d >/dev/null 2>&1; then +if type invoke-rc.d >/dev/null 2>&1; then invoke-rc.d userv stop else /etc/init.d/userv stop