summaryrefslogtreecommitdiff
path: root/debian/init-system-helpers.postinst
blob: 30b611e96c9fa1d088e298b398946046f98f5173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

# See http://bugs.debian.org/722524
if dpkg --compare-versions "$2" lt "1.9"; then
    find /var/lib/systemd/deb-systemd-helper-enabled -type f -exec chmod 644 '{}' \;
fi

#DEBHELPER#

exit 0