Initial Lab Setup

This commit is contained in:
2026-07-06 16:45:51 +02:00
commit 05184d778d
52 changed files with 2526 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
Acquire::http::Proxy-Auto-Detect "/usr/local/bin/apt-proxy-detect.sh";
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
sudo rm -vrf /var/cache/apt/archives/*
sudo rm /etc/apt/apt.conf.d/00aptproxy
#pt-get update -o Acquire::http::No-Cache=True
sudo apt-get update -o Acquire::http::No-Cache=True
sudo apt-get clean
apt-key adv --refresh-keys --keyserver keyserver.ubuntu.com
gpg --keyserver keyserver.ubuntu.com --recv-keys 0E98404D386FA1D9
gpg --export --armor 0E98404D386FA1D9 | sudo apt-key add -
sudo apt update
#used this to be distributed via Ansible to remove the Apt cacher and unfuck ssome fucked up apt keys
+1
View File
@@ -0,0 +1 @@
volker ALL=(ALL) NOPASSWD: ALL