Merge remote-tracking branch 'qubesos/pr/92'

* qubesos/pr/92:
  network: reload DNS only on "up" event from NetworkManager
This commit is contained in:
Marek Marczykowski-Górecki 2018-02-13 04:40:53 +01:00
commit 65be69db5a
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -4,11 +4,13 @@
# shellcheck source=init/functions
. /usr/lib/qubes/init/functions
/usr/lib/qubes/qubes-setup-dnat-to-ns
if [ "$2" = "up" ]; then
/usr/lib/qubes/qubes-setup-dnat-to-ns
# FIXME: Tinyproxy does not reload DNS servers.
if under_systemd ; then
systemctl --no-block try-restart qubes-updates-proxy.service
else
service qubes-updates-proxy try-restart
# FIXME: Tinyproxy does not reload DNS servers.
if under_systemd ; then
systemctl --no-block try-restart qubes-updates-proxy.service
else
service qubes-updates-proxy try-restart
fi
fi