20-vpnclient-unset-dns 974 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. if ! grep -q "^nameserver\s" "${resolvconf}"; then
  19. echo "${resolvconf} does not have any nameserver line !? Regenerating ..." >&2
  20. # This is the main line from yunohost's dnsmasq hook generating the resolv.dnsmasq.conf
  21. cat /usr/share/yunohost/conf/dnsmasq/plain/resolv.dnsmasq.conf | grep "^nameserver" | shuf >${resolvconf}
  22. fi
  23. fi