diff --git a/README.md b/README.md index e605ec1..79f4e00 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Debian-Setup -Debian setup scripts \ No newline at end of file +Debian server setup scripts \ No newline at end of file diff --git a/desktop.sh b/desktop.sh deleted file mode 100644 index 3814b1a..0000000 --- a/desktop.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# Placeholder - -echo "-------------------------------------------------" -echo "Setting Up Desktop - Installing Sudo" -echo "-------------------------------------------------" - -# Install sudo -apt update -apt install sudo -yy - -# Find the standard user you created during installation and make it a variable -user=$(getent passwd 1000 | awk -F: '{ print $1}') - -# Echo the user into the sudoers file -echo "$user ALL=(ALL:ALL) ALL" >> /etc/sudoers - -# Install Apps -sudo apt install git curl -yy - -echo "-------------------------------------------------" -echo "Setup complete." -echo "-------------------------------------------------"