#!/bin/sh -e INSTALL_PATH='/var/lib/erp5' case "$1" in configure) adduser --quiet --system --no-create-home --home $INSTALL_PATH --shell /bin/false erp5 chown -R erp5 $INSTALL_PATH ;; abort-upgrade|abort-deconfigure|abort-remove) ;; *) echo "$0 called with unknown argument \`$1'" 1>&2 exit 1 ;; esac exit 0