1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/bin/sh
# postinst script for chrony
#
# see: dh_installdeb(1)
set -e
# targets: configure|abort-upgrade|abort-remove|abort-deconfigure
case "$1" in
configure)
if command -v ucf >/dev/null
then
ucf --three-way /usr/share/chrony/chrony.conf /etc/chrony/chrony.conf
ucf --three-way /usr/share/chrony/chrony.keys /etc/chrony/chrony.keys
if [ -x "$(command -v ucfr)" ]; then
ucfr chrony /etc/chrony/chrony.conf
ucfr chrony /etc/chrony/chrony.keys
fi
fi
# Allocate the _chrony system user and group before running
# the dpkg-statoverride commands below to prevent failure when chrony
# is newly installed.
systemd-sysusers ${DPKG_ROOT:+--root="$DPKG_ROOT"} chrony.conf
# Change the user and group ownership of "/var/l{ib,og}/chrony" iif
# chronyd's configuration does not contain the "user" directive.
# Also, update these directories' mode bits to 0750 to follow upstream.
#
# We must also ensure that chronyd can read /etc/chrony/chrony.keys
# after dropping root privileges.
if ! chronyd -p | grep -q "^user"; then
for d in /var/lib/chrony /var/log/chrony /etc/chrony/chrony.keys; do
if ! dpkg-statoverride --list "$d" >/dev/null; then
if [ "$d" = "/etc/chrony/chrony.keys" ]; then
dpkg-statoverride --update --add root _chrony 0640 "$d"
else
dpkg-statoverride --update --add _chrony _chrony 0750 "$d"
fi
fi
done
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
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
|