File: rtpproxy.postinst

package info (click to toggle)
rtpproxy 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,080 kB
  • ctags: 463
  • sloc: sh: 8,395; ansic: 6,219; xml: 788; makefile: 111
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#