#!/bin/sh set -e case "$1" in configure) if ! id rtpproxy > /dev/null 2>&1 ; then adduser --system --no-create-home --group rtpproxy fi ;; esac # Automatically added by dh_installinit if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then if [ -x "/etc/init.d/rtpproxy" ]; then update-rc.d rtpproxy defaults >/dev/null if [ -n "$2" ]; then _dh_action=restart else _dh_action=start fi invoke-rc.d rtpproxy $_dh_action || exit $? fi fi # End automatically added section