summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-suid
diff options
context:
space:
mode:
Diffstat (limited to 'autoscripts/postinst-suid')
-rw-r--r--autoscripts/postinst-suid12
1 files changed, 7 insertions, 5 deletions
diff --git a/autoscripts/postinst-suid b/autoscripts/postinst-suid
index 1294d313..820d69a4 100644
--- a/autoscripts/postinst-suid
+++ b/autoscripts/postinst-suid
@@ -1,6 +1,8 @@
-if [ -e /etc/suid.conf -a -x /usr/sbin/suidregister ]; then
- suidregister -s #PACKAGE# /#FILE# #OWNER# #GROUP# #PERMS#
-else
- chown #OWNER#.#GROUP# /#FILE#
- chmod #PERMS# /#FILE#
+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