21 lines
441 B
Bash
21 lines
441 B
Bash
#!/bin/sh
|
|
# Remove VM service domain entries from /etc/hosts.
|
|
set -eu
|
|
|
|
DOMAINS="
|
|
tiararodney.com
|
|
chat.tiararodney.com
|
|
comments.tiararodney.com
|
|
bugs.code.tiararodney.com
|
|
dockerhub.oci.code.tiararodney.com
|
|
ghcr.oci.code.tiararodney.com
|
|
crates.code.tiararodney.com
|
|
pypi.code.tiararodney.com
|
|
accounts.tiararodney.com
|
|
"
|
|
|
|
for domain in $DOMAINS; do
|
|
sudo sed -i "/[[:space:]]${domain}$/d" /etc/hosts
|
|
done
|
|
|
|
echo "==> /etc/hosts entries removed"
|