Update pihole_setup.sh

pull/26/head
tteckster 2022-02-03 08:18:13 -05:00 committed by GitHub
parent d646ecf1fd
commit 54c145a774
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 7 deletions

View File

@ -27,7 +27,7 @@ function msg() {
echo -e "$TEXT"
}
msg "Setting up LXC OS..."
echo -e "${CHECKMARK} \e[1;92m Setting up LXC OS... \e[0m"
sed -i "/$LANG/ s/\(^# \)//" /etc/locale.gen
locale-gen >/dev/null
while [ "$(hostname -I)" = "" ]; do
@ -42,21 +42,20 @@ while [ "$(hostname -I)" = "" ]; do
done
echo -e "${CHECKMARK} \e[1;92m Network Connected: \e[0m $(hostname -I)"
# Update container OS
msg "Updating container OS..."
echo -e "${CHECKMARK} \e[1;92m Updating Container OS... \e[0m"
apt-get update &>/dev/null
apt-get -qqy upgrade &>/dev/null
msg "Installing Prerequisites..."
echo -e "${CHECKMARK} \e[1;92m Installing Dependencies... \e[0m"
apt-get update &>/dev/null
apt-get -qqy install \
curl \
sudo &>/dev/null
msg "Installing Pi-hole.."
echo -e "${CHECKMARK} \e[1;92m Installing Pi-hole... \e[0m"
curl -sSL https://install.pi-hole.net | bash
msg "Customizing LXC..."
echo -e "${CHECKMARK} \e[1;92m Customizing LXC... \e[0m"
rm /etc/motd
rm /etc/update-motd.d/10-uname
touch ~/.hushlogin
@ -70,5 +69,5 @@ EOF
systemctl daemon-reload
systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
msg "Cleanup..."
echo -e "${CHECKMARK} \e[1;92m Cleanup... \e[0m"
rm -rf /pihole_setup.sh /var/{cache,log}/* /var/lib/apt/lists/*