mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
downloadRunFile when updateself (#638)
* downloadRunFile when updateself * Download-Run-File when $updateself * Add updateconf function * Add --updaterun option * Typo * Typo
This commit is contained in:
parent
b1e8d16b9d
commit
81eeddd331
@ -7,6 +7,7 @@ param (
|
|||||||
[switch] $rebuild,
|
[switch] $rebuild,
|
||||||
[switch] $updateconf,
|
[switch] $updateconf,
|
||||||
[switch] $updatedb,
|
[switch] $updatedb,
|
||||||
|
[switch] $updaterun,
|
||||||
[switch] $updateself,
|
[switch] $updateself,
|
||||||
[switch] $help,
|
[switch] $help,
|
||||||
[string] $output = ""
|
[string] $output = ""
|
||||||
@ -60,6 +61,7 @@ Available commands:
|
|||||||
-stop
|
-stop
|
||||||
-update
|
-update
|
||||||
-updatedb
|
-updatedb
|
||||||
|
-updaterun
|
||||||
-updateself
|
-updateself
|
||||||
-updateconf
|
-updateconf
|
||||||
-rebuild
|
-rebuild
|
||||||
@ -135,6 +137,10 @@ elseif ($stop) {
|
|||||||
Check-Output-Dir-Exists
|
Check-Output-Dir-Exists
|
||||||
Invoke-Expression "& `"$scriptsDir\run.ps1`" -stop -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
Invoke-Expression "& `"$scriptsDir\run.ps1`" -stop -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
||||||
}
|
}
|
||||||
|
elseif ($updaterun) {
|
||||||
|
Check-Output-Dir-Exists
|
||||||
|
Download-Run-File
|
||||||
|
}
|
||||||
elseif ($updateself) {
|
elseif ($updateself) {
|
||||||
Download-Self
|
Download-Self
|
||||||
Write-Line "Updated self."
|
Write-Line "Updated self."
|
||||||
|
@ -83,6 +83,7 @@ restart
|
|||||||
stop
|
stop
|
||||||
update
|
update
|
||||||
updatedb
|
updatedb
|
||||||
|
updaterun
|
||||||
updateself
|
updateself
|
||||||
updateconf
|
updateconf
|
||||||
rebuild
|
rebuild
|
||||||
@ -126,6 +127,10 @@ elif [ "$1" == "stop" ]
|
|||||||
then
|
then
|
||||||
checkOutputDirExists
|
checkOutputDirExists
|
||||||
$SCRIPTS_DIR/run.sh stop $OUTPUT $COREVERSION $WEBVERSION
|
$SCRIPTS_DIR/run.sh stop $OUTPUT $COREVERSION $WEBVERSION
|
||||||
|
elif [ "$1" == "updaterun" ]
|
||||||
|
then
|
||||||
|
checkOutputDirExists
|
||||||
|
downloadRunFile
|
||||||
elif [ "$1" == "updateself" ]
|
elif [ "$1" == "updateself" ]
|
||||||
then
|
then
|
||||||
downloadSelf && echo "Updated self." && exit
|
downloadSelf && echo "Updated self." && exit
|
||||||
|
Loading…
x
Reference in New Issue
Block a user