#!/bin/sh set -e . /usr/share/debconf/confmodule db_version 2.0 case "$1" in configure) chown bacula:bacula /var/lib/bacula chmod 700 /var/lib/bacula chown bacula:adm /var/log/bacula chmod 750 /var/log/bacula . /usr/share/bacula-common/common-functions.dpkg readOrCreatePasswords # create our common passwords if needed ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. # Automatically added by dh_installtmpfiles/13.7.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # In case this system is running systemd, we need to ensure that all # necessary tmpfiles (if any) are created before starting. if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ] ; then systemd-tmpfiles --create bacula.conf >/dev/null || true fi fi # End automatically added section exit 0