2017-08-19 17:59:04 -04:00
#!/usr/bin/env bash
set -e
cat << "EOF"
_ _ _ _
| | __ ( _) | ___ ____ _ _ __ __| | ___ _ __
| '_ \| | __\ \ /\ / / _` | ' __/ _` | / _ \ ' _ \
| | _) | | | _ \ V V / ( _| | | | ( _| | __/ | | |
| _.__/| _| \_ _| \_ /\_ / \_ _,_| _| \_ _,_| \_ __| _| | _|
EOF
cat << EOF
Open source password management solutions
2017-08-19 21:45:13 -04:00
Copyright 2015-$( date +'%Y' ) , 8bit Solutions LLC
2017-08-19 17:59:04 -04:00
https://bitwarden.com, https://github.com/bitwarden
2017-08-23 16:15:42 -04:00
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
2017-08-19 17:59:04 -04:00
EOF
DIR = " $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " && pwd ) "
2021-12-14 09:25:55 -06:00
SCRIPT_NAME = $( basename " $0 " )
2017-08-23 16:22:02 -04:00
SCRIPT_PATH = " $DIR / $SCRIPT_NAME "
2022-03-01 16:19:09 -05:00
BITWARDEN_SCRIPT_URL = "https://go.btwrdn.co/bw-sh"
2017-08-19 21:45:13 -04:00
2022-03-01 16:19:09 -05:00
if curl -L -s -w "http_code %{http_code}" -o $SCRIPT_PATH .1 $BITWARDEN_SCRIPT_URL | grep -q "^http_code 20[0-9]"
then
mv $SCRIPT_PATH .1 $SCRIPT_PATH
chmod u+x $SCRIPT_PATH
echo "We have moved our self-hosted scripts to their own repository (https://github.com/bitwarden/self-host). Your 'bitwarden.sh' script has been automatically upgraded. Please run it again."
2022-02-24 16:36:59 +01:00
else
2022-03-01 16:19:09 -05:00
rm -f $SCRIPT_PATH .1
2022-02-24 16:36:59 +01:00
fi