Skip to content

Instantly share code, notes, and snippets.

@mwyau
Last active November 2, 2018 15:37
Show Gist options
  • Select an option

  • Save mwyau/4cd36389d26c6b9996f4f405ea9178e7 to your computer and use it in GitHub Desktop.

Select an option

Save mwyau/4cd36389d26c6b9996f4f405ea9178e7 to your computer and use it in GitHub Desktop.
/etc/NetworkManager/dispatcher.d/02-fixresolvconf.sh
#!/bin/sh -e
# Fix the permission of systemd-resolved resolv.conf after disconnected from
# VPN in Ubuntu 18.04
if [ "$2" = "vpn-down" ]; then
chmod 644 /run/systemd/resolve/stub-resolv.conf
chown systemd-resolve:systemd-resolve /run/systemd/resolve/stub-resolv.conf
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment