From: joey Date: Fri, 9 Feb 2001 23:58:50 +0000 (+0000) Subject: r434: added back (sigh) X-Git-Tag: version_2.0.101~165 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e69908dee402304d8c2c2dad806c436dc7cc9828;p=debhelper.git r434: added back (sigh) --- diff --git a/autoscripts/postinst-suid b/autoscripts/postinst-suid new file mode 100644 index 0000000..820d69a --- /dev/null +++ b/autoscripts/postinst-suid @@ -0,0 +1,8 @@ +if [ "$1" = "configure" ]; then + if command -v suidregister >/dev/null 2>&1 && [ -e /etc/suid.conf ]; then + suidregister -s #PACKAGE# /#FILE# #OWNER# #GROUP# #PERMS# + elif [ -e /#FILE# ]; then + chown #OWNER#.#GROUP# /#FILE# + chmod #PERMS# /#FILE# + fi +fi diff --git a/autoscripts/postrm-suid b/autoscripts/postrm-suid new file mode 100644 index 0000000..340736a --- /dev/null +++ b/autoscripts/postrm-suid @@ -0,0 +1,4 @@ +if [ "$1" = remove -a -e /etc/suid.conf ] && \ + command -v suidunregister >/dev/null 2>&1; then + suidunregister -s #PACKAGE# /#FILE# +fi