20-vpnclient-unset-dns 854 B

12345678910111213141516171819202122232425262728
  1. #!/bin/bash
  2. is_dns_set() {
  3. if [[ "$ynh_dns_method" != "custom" ]]; then
  4. return 0
  5. fi
  6. current_dns=$(grep -o -P '^\s*nameserver\s+\K[abcdefABCDEF\d.:]+$' /etc/resolv.dnsmasq.conf | sort | uniq)
  7. wanted_dns=$(echo "${ynh_dns}" | sed 's/,/\n/g' | sort | uniq)
  8. [[ -e /etc/dhcp/dhclient-exit-hooks.d/ynh-vpnclient ]] \
  9. && [[ "$current_dns" == "$wanted_dns" ]]
  10. }
  11. if is_dns_set; then
  12. resolvconf=/etc/resolv.dnsmasq.conf
  13. rm -f /etc/dhcp/dhclient-exit-hooks.d/ynh-vpnclient
  14. if [[ -e "${resolvconf}.ynh" ]]; then
  15. mv "${resolvconf}.ynh" "${resolvconf}"
  16. fi
  17. # FIXME : this situation happened to a user ...
  18. # We could try to force regen the dns conf
  19. # (though for now it's tightly coupled to dnsmasq)
  20. if ! grep -q "^nameserver\s" "${resolvconf}"; then
  21. echo "${resolvconf} does not have any nameserver line !?" >&2
  22. fi
  23. fi