File: rtpproxy.postinst

package info (click to toggle)
rtpproxy 1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,020 kB
  • ctags: 332
  • sloc: sh: 8,380; ansic: 5,195; xml: 698; makefile: 106
file content (11 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

case "$1" in
    configure)
	if ! id rtpproxy > /dev/null 2>&1 ; then
	    adduser --system --no-create-home --group rtpproxy
	fi
    ;;
esac

#DEBHELPER#