mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
list commands
This commit is contained in:
parent
32ee02c3ad
commit
f6d610e4e4
@ -8,6 +8,7 @@ param (
|
||||
[switch] $updateconf,
|
||||
[switch] $updatedb,
|
||||
[switch] $updateself,
|
||||
[switch] $help,
|
||||
[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) {
|
||||
if($env:BITWARDEN_QUIET -ne "true") {
|
||||
Write-Host $str
|
||||
@ -119,6 +139,11 @@ elseif ($updateself) {
|
||||
Download-Self
|
||||
Write-Line "Updated self."
|
||||
}
|
||||
elseif ($help) {
|
||||
List-Commands
|
||||
}
|
||||
else {
|
||||
Write-Line "No command found."
|
||||
Write-Line ""
|
||||
List-Commands
|
||||
}
|
||||
|
@ -73,17 +73,22 @@ function checkOutputDirNotExists() {
|
||||
fi
|
||||
}
|
||||
|
||||
function commandList() {
|
||||
function listCommands() {
|
||||
cat << EOT
|
||||
Available commands:
|
||||
|
||||
install
|
||||
update
|
||||
rebuild
|
||||
updateconf
|
||||
updatedb
|
||||
start
|
||||
restart
|
||||
stop
|
||||
update
|
||||
updatedb
|
||||
updateself
|
||||
updateconf
|
||||
rebuild
|
||||
help
|
||||
|
||||
See more at https://help.bitwarden.com/article/install-on-premise/#script-commands
|
||||
|
||||
EOT
|
||||
}
|
||||
@ -126,9 +131,9 @@ then
|
||||
downloadSelf && echo "Updated self." && exit
|
||||
elif [ "$1" == "help" ]
|
||||
then
|
||||
commandList
|
||||
listCommands
|
||||
else
|
||||
echo "No command found."
|
||||
echo
|
||||
commandList
|
||||
listCommands
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user