diff --git a/README.md b/README.md index 473db88..ac13fa5 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,15 @@ Deployment [**D**ebian](https://www.debian.org/) (os) + [**C**addy](https://cadd ## Installation -On a fresh install a root user +On a fresh install as root user 1. Upgrade -`apt update && apt upgrade` +`apt update && apt upgrade -y` 2. Install git -`apt install git` +`apt install git -y` 3. Download and make the instal script executable diff --git a/install.sh b/install.sh index 1c0adb0..4b555e1 100644 --- a/install.sh +++ b/install.sh @@ -23,7 +23,7 @@ fi echo "Generate and store the password somewhere safe" read -s -p "Enter password: " password echo -sudo useradd -m "$username" +useradd -m "$username" echo "$username:$password" | chpasswd usermod -aG sudo $username