File: postinst-suid

package info (click to toggle)
debhelper 9.20120909
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,136 kB
  • sloc: perl: 5,694; makefile: 78; sh: 7
file content (8 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
if [ "$1" = "configure" ]; then
	if which 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