2017-08-19 23:59:04 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cat << "EOF"
|
|
|
|
_ _ _ _
|
|
|
|
| |__ (_) |___ ____ _ _ __ __| | ___ _ __
|
|
|
|
| '_ \| | __\ \ /\ / / _` | '__/ _` |/ _ \ '_ \
|
|
|
|
| |_) | | |_ \ V V / (_| | | | (_| | __/ | | |
|
|
|
|
|_.__/|_|\__| \_/\_/ \__,_|_| \__,_|\___|_| |_|
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat << EOF
|
|
|
|
Open source password management solutions
|
2017-08-20 03:45:13 +02:00
|
|
|
Copyright 2015-$(date +'%Y'), 8bit Solutions LLC
|
2017-08-19 23:59:04 +02:00
|
|
|
https://bitwarden.com, https://github.com/bitwarden
|
|
|
|
|
2017-08-23 22:15:42 +02:00
|
|
|
===================================================
|
|
|
|
|
2017-08-19 23:59:04 +02:00
|
|
|
EOF
|
|
|
|
|
2017-08-23 22:15:42 +02:00
|
|
|
# Setup
|
|
|
|
|
2017-08-19 23:59:04 +02:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2017-08-23 22:22:02 +02:00
|
|
|
SCRIPT_NAME=`basename "$0"`
|
|
|
|
SCRIPT_PATH="$DIR/$SCRIPT_NAME"
|
2017-10-03 22:34:39 +02:00
|
|
|
OUTPUT="$DIR/bwdata"
|
2017-08-21 14:49:44 +02:00
|
|
|
if [ $# -eq 2 ]
|
2017-08-20 03:45:13 +02:00
|
|
|
then
|
2017-08-21 14:49:44 +02:00
|
|
|
OUTPUT=$2
|
2017-08-20 03:45:13 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
SCRIPTS_DIR="$OUTPUT/scripts"
|
2019-01-19 04:23:46 +01:00
|
|
|
GITHUB_BASE_URL="https://raw.githubusercontent.com/bitwarden/server/master"
|
2020-12-21 17:29:48 +01:00
|
|
|
COREVERSION="1.38.4"
|
2020-12-03 00:04:29 +01:00
|
|
|
WEBVERSION="2.17.1"
|
2017-08-20 03:45:13 +02:00
|
|
|
|
2020-12-18 18:33:12 +01:00
|
|
|
echo "bitwarden.sh version $COREVERSION"
|
|
|
|
docker --version
|
|
|
|
docker-compose --version
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
2017-08-23 22:15:42 +02:00
|
|
|
# Functions
|
|
|
|
|
|
|
|
function downloadSelf() {
|
2020-05-04 21:44:38 +02:00
|
|
|
if curl -s -w "http_code %{http_code}" -o $SCRIPT_PATH.1 $GITHUB_BASE_URL/scripts/bitwarden.sh | grep -q "^http_code 20[0-9]"
|
|
|
|
then
|
|
|
|
mv $SCRIPT_PATH.1 $SCRIPT_PATH
|
|
|
|
chmod u+x $SCRIPT_PATH
|
|
|
|
else
|
|
|
|
rm -f $SCRIPT_PATH.1
|
|
|
|
fi
|
2017-08-23 22:15:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function downloadRunFile() {
|
2017-09-18 18:11:03 +02:00
|
|
|
if [ ! -d "$SCRIPTS_DIR" ]
|
|
|
|
then
|
|
|
|
mkdir $SCRIPTS_DIR
|
|
|
|
fi
|
2017-08-23 22:15:42 +02:00
|
|
|
curl -s -o $SCRIPTS_DIR/run.sh $GITHUB_BASE_URL/scripts/run.sh
|
|
|
|
chmod u+x $SCRIPTS_DIR/run.sh
|
2018-05-31 18:05:26 +02:00
|
|
|
rm -f $SCRIPTS_DIR/install.sh
|
2017-08-23 22:15:42 +02:00
|
|
|
}
|
|
|
|
|
2017-09-18 18:11:03 +02:00
|
|
|
function checkOutputDirExists() {
|
|
|
|
if [ ! -d "$OUTPUT" ]
|
|
|
|
then
|
2018-06-01 03:47:06 +02:00
|
|
|
echo "Cannot find a Bitwarden installation at $OUTPUT."
|
2017-09-18 18:11:03 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkOutputDirNotExists() {
|
2018-07-26 21:29:46 +02:00
|
|
|
if [ -d "$OUTPUT/docker" ]
|
2017-09-18 18:11:03 +02:00
|
|
|
then
|
2018-06-01 03:47:06 +02:00
|
|
|
echo "Looks like Bitwarden is already installed at $OUTPUT."
|
2017-09-18 18:11:03 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-10-25 02:04:09 +02:00
|
|
|
function listCommands() {
|
2019-10-25 01:56:41 +02:00
|
|
|
cat << EOT
|
|
|
|
Available commands:
|
|
|
|
|
|
|
|
install
|
2019-10-25 02:04:09 +02:00
|
|
|
start
|
|
|
|
restart
|
|
|
|
stop
|
2019-10-25 01:56:41 +02:00
|
|
|
update
|
|
|
|
updatedb
|
2020-01-13 15:47:59 +01:00
|
|
|
updaterun
|
2019-10-25 01:56:41 +02:00
|
|
|
updateself
|
2019-10-25 02:04:09 +02:00
|
|
|
updateconf
|
2020-06-17 15:05:35 +02:00
|
|
|
renewcert
|
2019-10-25 02:04:09 +02:00
|
|
|
rebuild
|
|
|
|
help
|
|
|
|
|
|
|
|
See more at https://help.bitwarden.com/article/install-on-premise/#script-commands
|
2019-10-25 01:56:41 +02:00
|
|
|
|
|
|
|
EOT
|
|
|
|
}
|
|
|
|
|
2017-08-23 22:15:42 +02:00
|
|
|
# Commands
|
|
|
|
|
2017-08-20 03:55:34 +02:00
|
|
|
if [ "$1" == "install" ]
|
2017-08-19 23:59:04 +02:00
|
|
|
then
|
2017-09-18 18:11:03 +02:00
|
|
|
checkOutputDirNotExists
|
2018-07-26 21:29:46 +02:00
|
|
|
mkdir -p $OUTPUT
|
2017-11-09 05:51:24 +01:00
|
|
|
downloadRunFile
|
2018-05-31 18:05:26 +02:00
|
|
|
$SCRIPTS_DIR/run.sh install $OUTPUT $COREVERSION $WEBVERSION
|
2017-08-21 17:58:15 +02:00
|
|
|
elif [ "$1" == "start" -o "$1" == "restart" ]
|
2017-08-19 23:59:04 +02:00
|
|
|
then
|
2017-09-18 18:11:03 +02:00
|
|
|
checkOutputDirExists
|
2017-11-09 04:24:23 +01:00
|
|
|
$SCRIPTS_DIR/run.sh restart $OUTPUT $COREVERSION $WEBVERSION
|
2017-08-20 03:55:34 +02:00
|
|
|
elif [ "$1" == "update" ]
|
2017-08-19 23:59:04 +02:00
|
|
|
then
|
2017-09-18 18:11:03 +02:00
|
|
|
checkOutputDirExists
|
2017-11-09 04:24:23 +01:00
|
|
|
downloadRunFile
|
|
|
|
$SCRIPTS_DIR/run.sh update $OUTPUT $COREVERSION $WEBVERSION
|
2018-08-30 22:25:33 +02:00
|
|
|
elif [ "$1" == "rebuild" ]
|
|
|
|
then
|
|
|
|
checkOutputDirExists
|
|
|
|
$SCRIPTS_DIR/run.sh rebuild $OUTPUT $COREVERSION $WEBVERSION
|
2019-10-17 21:10:28 +02:00
|
|
|
elif [ "$1" == "updateconf" ]
|
|
|
|
then
|
|
|
|
checkOutputDirExists
|
|
|
|
$SCRIPTS_DIR/run.sh updateconf $OUTPUT $COREVERSION $WEBVERSION
|
2017-08-20 03:55:34 +02:00
|
|
|
elif [ "$1" == "updatedb" ]
|
2017-08-19 23:59:04 +02:00
|
|
|
then
|
2017-09-18 18:11:03 +02:00
|
|
|
checkOutputDirExists
|
2017-11-09 04:24:23 +01:00
|
|
|
$SCRIPTS_DIR/run.sh updatedb $OUTPUT $COREVERSION $WEBVERSION
|
2017-08-21 15:39:12 +02:00
|
|
|
elif [ "$1" == "stop" ]
|
|
|
|
then
|
2017-09-18 18:11:03 +02:00
|
|
|
checkOutputDirExists
|
2017-11-09 04:24:23 +01:00
|
|
|
$SCRIPTS_DIR/run.sh stop $OUTPUT $COREVERSION $WEBVERSION
|
2020-06-17 15:05:35 +02:00
|
|
|
elif [ "$1" == "renewcert" ]
|
|
|
|
then
|
|
|
|
checkOutputDirExists
|
|
|
|
$SCRIPTS_DIR/run.sh renewcert $OUTPUT $COREVERSION $WEBVERSION
|
2020-01-13 15:47:59 +01:00
|
|
|
elif [ "$1" == "updaterun" ]
|
|
|
|
then
|
|
|
|
checkOutputDirExists
|
|
|
|
downloadRunFile
|
2017-08-23 22:15:42 +02:00
|
|
|
elif [ "$1" == "updateself" ]
|
|
|
|
then
|
2018-05-31 20:35:54 +02:00
|
|
|
downloadSelf && echo "Updated self." && exit
|
2019-10-25 01:56:41 +02:00
|
|
|
elif [ "$1" == "help" ]
|
|
|
|
then
|
2019-10-25 02:04:09 +02:00
|
|
|
listCommands
|
2017-08-19 23:59:04 +02:00
|
|
|
else
|
|
|
|
echo "No command found."
|
2019-10-25 01:56:41 +02:00
|
|
|
echo
|
2019-10-25 02:04:09 +02:00
|
|
|
listCommands
|
2017-08-19 23:59:04 +02:00
|
|
|
fi
|