File: init-system-helpers.postinst

package info (click to toggle)
init-system-helpers 1.22
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 236 kB
  • ctags: 26
  • sloc: perl: 915; sh: 308; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

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

#DEBHELPER#

exit 0