cloudbuild/pkg/distros/resources/97_csclub_resolv_conf.sh

13 lines
230 B
Bash
Raw Normal View History

2022-11-19 04:09:32 -05:00
#!/bin/bash
set -ex
RESOLV_CONF=/run/netconfig/resolv.conf
sed -i '/^search .*/d' $RESOLV_CONF
sed -i '/^options .*/d' $RESOLV_CONF
cat <<EOF >> $RESOLV_CONF
search csclub.uwaterloo.ca uwaterloo.ca
options ndots:2
EOF