Add T-Pot Technical Preview

This commit is contained in:
Marco Ochse
2023-05-30 12:22:10 +02:00
parent 87ef005c17
commit 00d6d1b4c7
20 changed files with 3546 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/bin/bash
if ! command -v sudo &> /dev/null
then
echo "sudo is not installed. Installing now..."
su -c "apt-get -y update && apt-get -y install sudo"
su -c "/usr/sbin/usermod -aG sudo $(whoami)"
else
echo "sudo is already installed."
fi