view debian/static/DEBIAN/postinst @ 29:7c5e5be876bb default/master

Small fix to error handling during initialization
author Ivo Smits <Ivo@UCIS.nl>
date Sat, 09 Apr 2011 23:34:06 +0200
parents 640f620a55cf
children
line wrap: on
line source

#!/bin/sh
if [ "$1" = "configure" ]; then
	if ! getent passwd quicktun >/dev/null; then
		/usr/sbin/useradd -d /nonexistent -N -r -s /bin/false -g nogroup quicktun
	fi
fi