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

master
B.J. Dweck 2020-10-22 08:50:00 +02:00
parent 43bece3c57
commit 67758f6eb3
1 changed files with 3 additions and 1 deletions

4
debian/postinst vendored
View File

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