Skip to content

Commit

Permalink
Removed service start from postinst
Browse files Browse the repository at this point in the history
  • Loading branch information
grodansparadis committed Jun 28, 2021
1 parent be909ef commit 00dd72a
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions resources/debpkg/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -94,32 +94,7 @@ case "$1" in
;;
esac

# Automatically added by dh_systemd_enable
# This will only remove masks created by d-s-h on package removal.
deb-systemd-helper unmask vscpd.service >/dev/null || true

# was-enabled defaults to true, so new installations run enable.
if deb-systemd-helper --quiet was-enabled vscpd.service; then
# Enables the unit on first installation, creates new
# symlinks on upgrades if the unit file has changed.
deb-systemd-helper enable vscpd.service >/dev/null || true
else
# Update the statefile to add new symlinks (if any), which need to be
# cleaned up on purge. Also remove old symlinks.
deb-systemd-helper update-state vscpd.service >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_systemd_start
if [ -d /run/systemd/system ]; then
systemctl --system daemon-reload >/dev/null || true
if [ -n "$2" ]; then
_dh_action=try-restart
else
_dh_action=start
fi
deb-systemd-invoke $_dh_action vscpd.service >/dev/null || true
fi
# End automatically added section


#DEBHELPER#

Expand Down

0 comments on commit 00dd72a

Please sign in to comment.