#!/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.14.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -x "$(command -v systemd-tmpfiles)" ]; then systemd-tmpfiles ${DPKG_ROOT:+--root="$DPKG_ROOT"} --create bacula.conf || true fi fi # End automatically added section exit 0