From b042d555b61596fd95f13c2b7dd18b29d57535ba Mon Sep 17 00:00:00 2001 From: Sam Al-Sapti Date: Tue, 14 Mar 2023 16:17:02 +0100 Subject: [PATCH] Edit README.md to describe users option --- README.md | 3 +++ deploy.sh | 1 + 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 97e3b76..b165120 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,9 @@ Here is a summary of the options that can be used with the script: # deploy the ubuntu_base role only ./deploy.sh base +# deploy user setup only +./deploy.sh users + # deploy the docker role only ./deploy.sh services diff --git a/deploy.sh b/deploy.sh index 5777829..ee10734 100755 --- a/deploy.sh +++ b/deploy.sh @@ -4,6 +4,7 @@ usage () { { echo "Usage: $0 [--vagrant]" echo "Usage: $0 [--vagrant] base" + echo "Usage: $0 [--vagrant] users" echo "Usage: $0 [--vagrant] services [SERVICE]" } >&2 }