# File lib/simp/cli/config/items/data/simp_options_dns_servers.rb, line 37
    def recommended_value
      os = os_value
      if os.empty?
        if ip = @config_items.fetch( 'cli::network::ipaddress', nil )
          [ip.value]
        else
          ['8.8.8.8 (CHANGE THIS)']
        end
      else
        os
      end
    end