1
0
Fork 0
dokuwiki-templates-extra/debian/dokuwiki-templates-extra.postinst
Daniel Baumann 9c8ce610a0
Adding debian version 20241201-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-03-16 08:11:24 +01:00

65 lines
1.2 KiB
Bash
Executable file

#!/bin/sh
set -e
. /usr/share/debconf/confmodule
case "${1}" in
configure)
db_get dokuwiki-templates/templates
TEMPLATES="${RET:-none}"
db_stop
# Handling templates
DIRECTORIES="$(cd /usr/share/dokuwiki/templates-extra && ls -d */ | sed -e 's|/$||g')"
case "${TEMPLATES}" in
all)
TEMPLATES="${DIRECTORIES}"
;;
none)
TEMPLATES=""
;;
*)
TEMPLATES="$(echo ${TEMPLATES} | sed -e 's|,| |g')"
;;
esac
# Disabling all templates
for TEMPLATE in ${DIRECTORIES}
do
if [ -L "/var/lib/dokuwiki/lib/tpl/${TEMPLATE}" ]
then
if [ "$(dirname $(readlink /var/lib/dokuwiki/lib/tpl/"${TEMPLATE}"))" = "/usr/share/dokuwiki/templates-extra" ]
then
rm -f "/var/lib/dokuwiki/lib/tpl/${TEMPLATE}"
fi
fi
done
# Enabling selected templates
for TEMPLATE in ${TEMPLATES}
do
if [ -e "/usr/share/dokuwiki/templates-extra/${TEMPLATE}" ]
then
ln -s "/usr/share/dokuwiki/templates-extra/${TEMPLATE}" "/var/lib/dokuwiki/lib/tpl/${TEMPLATE}"
fi
done
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`${1}'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0