From 95f0da4116e70343cf254124c83f0593a9784c0c Mon Sep 17 00:00:00 2001 From: Orazio Date: Mon, 2 Sep 2019 11:08:53 +0200 Subject: [PATCH] Add bitwarden to 'Usage:' text --- scripts/makeOVPN.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/makeOVPN.sh b/scripts/makeOVPN.sh index 95e8739..8b8ab5c 100755 --- a/scripts/makeOVPN.sh +++ b/scripts/makeOVPN.sh @@ -15,15 +15,15 @@ INSTALL_HOME=${INSTALL_HOME%/} # remove possible trailing slash helpFunc() { echo "::: Create a client ovpn profile, optional nopass" echo ":::" - echo "::: Usage: pivpn <-a|add> [-n|--name ] [-p|--password ]|[nopass] [-d|--days ] [-i|--iOS] [-h|--help]" + echo "::: Usage: pivpn <-a|add> [-n|--name ] [-p|--password ]|[nopass] [-d|--days ] [-b|--bitwarden] [-i|--iOS] [-h|--help]" echo ":::" echo "::: Commands:" echo "::: [none] Interactive mode" echo "::: nopass Create a client without a password" - echo "::: -b,--bitwarden Create and save a client through Bitwarden" - echo "::: -d,--days Expire the certificate after specified number of days (default: 1080)" echo "::: -n,--name Name for the Client (default: '"$(hostname)"')" echo "::: -p,--password Password for the Client (no default)" + echo "::: -d,--days Expire the certificate after specified number of days (default: 1080)" + echo "::: -b,--bitwarden Create and save a client through Bitwarden" echo "::: -i,--iOS Generate a certificate that leverages iOS keychain" echo "::: -h,--help Show this help dialog" }