1
0
mirror of https://github.com/bitwarden/server.git synced 2025-01-08 19:47:44 +01:00
bitwarden-server/util/DigitalOceanMarketplace/files/opt/bitwarden/install-bitwarden.sh

33 lines
604 B
Bash
Raw Normal View History

2019-02-21 18:39:02 +01:00
#!/bin/bash
#
# Install Bitwarden
# ref: https://help.bitwarden.com/article/install-on-premise/
#
/root/bitwarden.sh install
/root/bitwarden.sh start
echo -e 'Waiting for Bitwarden database container to come online...'
sleep 60s
/root/bitwarden.sh updatedb
#
# Setup Bitwarden update cron
# ref: https://help.bitwarden.com/article/updating-on-premise/
#
echo -e '#!/usr/bin/env bash\n/root/bitwarden.sh updateself\n/root/bitwarden.sh update' \
> /etc/cron.weekly/bitwarden-update.sh
chmod +x /etc/cron.weekly/bitwarden-update.sh
#
# Cleanup .bashrc
#
cp -f /etc/skel/.bashrc /root/.bashrc