summaryrefslogtreecommitdiffstats
path: root/packaging/deb/meshbay-node/DEBIAN/postinst
blob: ba1663359e58b9f25c0710efff9075620efd3509 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e

case "$1" in
    configure)
        # Reload systemd if available
        if [ -d /run/systemd/system ]; then
            systemctl daemon-reload || true
        fi
        ;;
esac

#DEBHELPER#