1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00

list commands

This commit is contained in:
Kyle Spearrin 2019-10-24 20:04:09 -04:00
parent 32ee02c3ad
commit f6d610e4e4
2 changed files with 37 additions and 7 deletions

View File

@ -8,6 +8,7 @@ param (
[switch] $updateconf, [switch] $updateconf,
[switch] $updatedb, [switch] $updatedb,
[switch] $updateself, [switch] $updateself,
[switch] $help,
[string] $output = "" [string] $output = ""
) )
@ -49,6 +50,25 @@ function Check-Output-Dir-Not-Exists {
} }
} }
function List-Commands {
Write-Line "
Available commands:
-install
-start
-restart
-stop
-update
-updatedb
-updateself
-updateconf
-rebuild
-help
See more at https://help.bitwarden.com/article/install-on-premise/#script-commands
"
}
function Write-Line($str) { function Write-Line($str) {
if($env:BITWARDEN_QUIET -ne "true") { if($env:BITWARDEN_QUIET -ne "true") {
Write-Host $str Write-Host $str
@ -119,6 +139,11 @@ elseif ($updateself) {
Download-Self Download-Self
Write-Line "Updated self." Write-Line "Updated self."
} }
elseif ($help) {
List-Commands
}
else { else {
Write-Line "No command found." Write-Line "No command found."
Write-Line ""
List-Commands
} }

View File

@ -73,17 +73,22 @@ function checkOutputDirNotExists() {
fi fi
} }
function commandList() { function listCommands() {
cat << EOT cat << EOT
Available commands: Available commands:
install install
update start
rebuild restart
updateconf
updatedb
stop stop
update
updatedb
updateself updateself
updateconf
rebuild
help
See more at https://help.bitwarden.com/article/install-on-premise/#script-commands
EOT EOT
} }
@ -126,9 +131,9 @@ then
downloadSelf && echo "Updated self." && exit downloadSelf && echo "Updated self." && exit
elif [ "$1" == "help" ] elif [ "$1" == "help" ]
then then
commandList listCommands
else else
echo "No command found." echo "No command found."
echo echo
commandList listCommands
fi fi