From: Darshaka Pathirana Date: Wed, 25 Jan 2017 23:54:11 +0000 (+0100) Subject: Add #DEBHELPER# token X-Git-Tag: v0.3.6-1~9 X-Git-Url: https://git.syn-net.org/?p=debian%2Fuanytun.git;a=commitdiff_plain;h=5c5b022bd1b3b23d3f1870e3f16f9828c8c0b94e;hp=43e44744fdc5d45a66bb3963100ffaab27fb871d Add #DEBHELPER# token Fix lintian warning maintainer-script-lacks-debhelper-token As this package uses debhelper commands, adding the token is recommended --- diff --git a/debian/postinst b/debian/postinst index b72feed..8b783fe 100755 --- a/debian/postinst +++ b/debian/postinst @@ -10,3 +10,5 @@ fi if [ "$1" = "configure" ]; then adduser --quiet --system --group --no-create-home --home /var/run/uanytun uanytun fi + +#DEBHELPER# diff --git a/debian/postrm b/debian/postrm index 9088e15..345ff3c 100755 --- a/debian/postrm +++ b/debian/postrm @@ -13,3 +13,5 @@ if [ "$1" = "purge" ] ; then echo "Not removing uanytun user and group: adduser package not found." >&2 fi fi + +#DEBHELPER# diff --git a/debian/prerm b/debian/prerm index 01b209c..631c043 100755 --- a/debian/prerm +++ b/debian/prerm @@ -10,3 +10,5 @@ if [ -x "/etc/init.d/uanytun" ] && [ "$1" = remove ]; then /etc/init.d/uanytun stop || true fi fi + +#DEBHELPER#