]> git.donarmstrong.com Git - debhelper.git/blob - autoscripts/postinst-suid
Updated French man page translation. Closes: #685560
[debhelper.git] / autoscripts / postinst-suid
1 if [ "$1" = "configure" ]; then
2         if which suidregister >/dev/null 2>&1 && [ -e /etc/suid.conf ]; then
3                 suidregister -s #PACKAGE# /#FILE# #OWNER# #GROUP# #PERMS#
4         elif [ -e /#FILE# ]; then
5                 chown #OWNER#:#GROUP# /#FILE#
6                 chmod #PERMS# /#FILE#
7         fi
8 fi