1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 00:22:50 -05:00

[BEEEP] Bitwarden Script uninstall option (#1796)

Co-authored-by: Vince Grassia <593223+vgrassia@users.noreply.github.com>
This commit is contained in:
Micaiah Martin
2022-02-23 14:35:36 -06:00
committed by GitHub
parent 52ddf55029
commit 156e10da0e
5 changed files with 95 additions and 0 deletions

View File

@ -95,6 +95,7 @@ updatedb
updaterun
updateself
updateconf
uninstall
renewcert
rebuild
help
@ -149,6 +150,10 @@ case $1 in
"updateself")
downloadSelf && echo "Updated self." && exit
;;
"uninstall")
checkOutputDirExists
$SCRIPTS_DIR/run.sh uninstall $OUTPUT
;;
"help")
listCommands
;;