#!/bin/sh # postinst script for restbase # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac makedir() { if [ ! -d $1 ]; then mkdir $1 fi chown -R $2 $1 && chmod $3 $1 } # make sure that the restbase user exists. Simplest portable way to check is to # chown something, so we'll create the directories that we need here. cd /var/log makedir restbase root:root 700 chgrp restbase restbase 2>/dev/null || addgroup --system restbase chown restbase restbase 2>/dev/null || adduser --system --home /usr/lib/restbase --no-create-home \ --disabled-password --ingroup restbase restbase # Now that we have the user ready, chown & chmod the log dir makedir restbase restbase:restbase 700 # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0