2015-01-31 21:24:58 +01:00
|
|
|
|
#!/bin/bash
|
2015-11-03 14:40:29 +01:00
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
do_configure() {
|
2017-03-29 03:50:27 +02:00
|
|
|
|
|
|
|
|
|
# Set document root permissions
|
|
|
|
|
chown -R root:root /usr/share/yunohost/admin
|
2015-11-03 14:40:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# 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)
|
|
|
|
|
do_configure
|
|
|
|
|
;;
|
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
|
|
|
|
|
|
exit 0
|