From e69908dee402304d8c2c2dad806c436dc7cc9828 Mon Sep 17 00:00:00 2001 From: joey Date: Fri, 9 Feb 2001 23:58:50 +0000 Subject: [PATCH] r434: added back (sigh) --- autoscripts/postinst-suid | 8 ++++++++ autoscripts/postrm-suid | 4 ++++ 2 files changed, 12 insertions(+) create mode 100644 autoscripts/postinst-suid create mode 100644 autoscripts/postrm-suid 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 -- 2.39.2