Subversion Repositories ALCASAR

Rev

Blame | Last modification | View Log

#! /bin/bash
# Unbound DNS Safe Search config entries for ALCASAR
# main list : https://gist.github.com/johannrichard/a645b32c75646b1f56813b517eb6cc8b
# Modifications made for ALCASAR :
#   - remove all "IN ADDR" resolutions
#   - add "www.ecosia.org CNAME strict-safe-search.ecosia.org" (see Ecosia help center)
while read -r line; do
        echo -n 'local-zone: '`echo $line|cut -d" " -f2` >> safe-searching
        echo -n '" redirect' >> safe-searching
        echo >> safe-searching
        echo -n 'local-data: '`echo $line|cut -d" " -f2` >> safe-searching
        echo -n ' CNAME '`echo $line|cut -d" " -f4` >> safe-searching
        echo >> safe-searching
done < safe-searching-wk

Generated by GNU Enscript 1.6.6.