Debian package should only reload Systemd if it is running on the current system

master
B.J. Dweck 3 years ago
parent 43bece3c57
commit 67758f6eb3

4
debian/postinst vendored

@ -42,7 +42,9 @@ configure_tor_controller() {
fi
if [ $TORRC_CHANGED -eq 1 ]; then
systemctl reload tor
if [ -d "/run/systemd/system" ]; then
systemctl reload tor
fi
fi
}

Loading…
Cancel
Save