From 5ad1c3b517ba34546a5caf4d2c96e088d3c1c789 Mon Sep 17 00:00:00 2001 From: Valentin Date: Fri, 23 Feb 2024 14:35:26 +0100 Subject: [PATCH] =?UTF-8?q?correction=20d=C3=A9but=20du=20script=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- install.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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