File: postinst-suid

package info (click to toggle)
debhelper 4.0.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 684 kB
  • ctags: 49
  • sloc: perl: 2,095; makefile: 218
file content (8 lines) | stat: -rw-r--r-- 278 bytes parent folder | download
1
2
3
4
5
6
7
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