delete apt cacher

This commit is contained in:
2025-09-24 22:21:47 +02:00
parent a6a7191c9d
commit 139cb15370
2 changed files with 0 additions and 19 deletions

View File

@@ -1,12 +0,0 @@
#!/bin/bash
IP="192.168.179.107"
# Ping the IP address to check if it is reachable
if ping -c 1 $IP &> /dev/null
then
echo 'Acquire::http { Proxy "http://192.168.179.107:3142"; }' | sudo tee -a /etc/apt/apt.conf.d/proxy
else
echo "IP $IP is not reachable. Exiting."
exit 1
fi

View File

@@ -31,12 +31,5 @@ configure_terminal() {
sudo chmod +x ./terminal/setup.sh
./terminal/setup.sh --icon "$terminal_icon"
}
configure_apt_cacher() {
echo "Configuring apt-cacher..."
sudo chmod +x ./apt-cacher/setup.sh
./apt-cacher/setup.sh
}
configure_terminal
configure_apt_cacher