]> git.donarmstrong.com Git - debhelper.git/commitdiff
r434: added back (sigh)
authorjoey <joey>
Fri, 9 Feb 2001 23:58:50 +0000 (23:58 +0000)
committerjoey <joey>
Fri, 9 Feb 2001 23:58:50 +0000 (23:58 +0000)
autoscripts/postinst-suid [new file with mode: 0644]
autoscripts/postrm-suid [new file with mode: 0644]

diff --git a/autoscripts/postinst-suid b/autoscripts/postinst-suid
new file mode 100644 (file)
index 0000000..820d69a
--- /dev/null
@@ -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 (file)
index 0000000..340736a
--- /dev/null
@@ -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