Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > dca483b59ba61f3fa092de932ddd570e > files > 107

nuface-2.0.14-2mdv2009.1.i586.rpm

#! /bin/sh
# postinst script for nuface
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <postinst> `configure' <most-recently-configured-version>
#        * <old-postinst> `abort-upgrade' <new version>
#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
#          <new-version>
#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
#          <failed-install-package> <version> `removing'
#          <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
#

case "$1" in
    configure)
        # these directories must be rw by www-data:
        chown www-data /var/lib/nuface/dyn/nufw
        chown www-data /var/lib/nuface/dyn/standard
        chown www-data /var/lib/nuface/dyn
        #chown www-data /usr/share/nuface/templates_c
        chown www-data /var/lib/nuface/acls
        chown www-data /var/lib/nuface/acls/*

        # If the web server is apache2, we must restart it, so that the
        # new translations are taken into account:
        pidof apache2 >/dev/null && apache2ctl -t >/dev/null 2>&1 \
            && apache2ctl graceful || true
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)

    ;;

    purge)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0