20-vpnclient-set-dns 995 B

1234567891011121314151617181920212223242526272829303132333435
  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[a-fA-F\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. ynh_dns_method=$(yunohost app setting vpnclient dns_method)
  12. ynh_dns=$(yunohost app setting vpnclient nameservers)
  13. # Set host DNS resolvers
  14. if ! is_dns_set; then
  15. resolvconf=/etc/resolv.dnsmasq.conf
  16. cp -fa "${resolvconf}" "${resolvconf}.ynh"
  17. if [[ "$ynh_dns_method" == "custom" ]]; then
  18. cat << EOF > /etc/dhcp/dhclient-exit-hooks.d/ynh-vpnclient
  19. echo "${ynh_dns}" | sed 's/,/\n/g' | sort | uniq | sed 's/^/nameserver /g' > ${resolvconf}
  20. EOF
  21. bash /etc/dhcp/dhclient-exit-hooks.d/ynh-vpnclient
  22. fi
  23. fi
  24. if is_dns_set; then
  25. echo "[ OK ] Host DNS correctly set"
  26. else
  27. echo "[FAIL] No host DNS set" >&2
  28. exit 1
  29. fi