Add files via upload

This commit is contained in:
tteckster 2022-02-04 05:37:01 -05:00 committed by GitHub
parent fc49a02107
commit 555d263e4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 14 deletions

View File

@ -64,7 +64,7 @@ echo -e "${CHECKMARK} \e[1;92m Installing Build Essentials... \e[0m"
apt-get install -y build-essential &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Installing Rust... \e[0m"
curl https://sh.rustup.rs -sSf | sh -s
curl https://sh.rustup.rs -sSf | sh
echo 'export PATH=~/.cargo/bin:$PATH' >> ~/.bashrc
export PATH=~/.cargo/bin:$PATH
which rustc &>/dev/null
@ -77,21 +77,21 @@ which npm &>/dev/null
npm i npm@latest -g &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Building Vaultwarden... \e[0m"
git clone https://github.com/dani-garcia/vaultwarden && pushd vaultwarden &>/dev/null
cargo clean && cargo build --features sqlite --release &>/dev/null
file target/release/vaultwarden &>/dev/null
git clone https://github.com/dani-garcia/vaultwarden && pushd vaultwarden
cargo clean && cargo build --features sqlite --release
file target/release/vaultwarden
echo -e "${CHECKMARK} \e[1;92m Building Web-Vault... \e[0m"
pushd target/release/ &>/dev/null
git clone --recurse-submodules https://github.com/bitwarden/web.git web-vault.git && cd web-vault.git &>/dev/null
git checkout v2.25.1 &>/dev/null
git submodule update --init --recursive &>/dev/null
wget https://raw.githubusercontent.com/dani-garcia/bw_web_builds/master/patches/v2.25.0.patch &>/dev/null
git apply v2.25.0.patch &>/dev/null
npm ci --legacy-peer-deps && npm audit fix --legacy-peer-deps || true && npm run dist:oss:selfhost &>/dev/null
cp -a build ../web-vault &>/dev/null
pushd target/release/
git clone --recurse-submodules https://github.com/bitwarden/web.git web-vault.git && cd web-vault.git
git checkout v2.25.1
git submodule update --init --recursive
wget https://raw.githubusercontent.com/dani-garcia/bw_web_builds/master/patches/v2.25.0.patch
git apply v2.25.0.patch
npm ci --legacy-peer-deps && npm audit fix --legacy-peer-deps || true && npm run dist:oss:selfhost
cp -a build ../web-vault
cd ..
mkdir data &>/dev/null
mkdir data
echo -e "${CHECKMARK} \e[1;92m Create Systemd Service... \e[0m"
cp ../../.env.template /etc/vaultwarden.env &>/dev/null
@ -144,4 +144,4 @@ systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
systemctl enable vaultwarden.service &>/dev/null
systemctl start vaultwarden.service &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Cleanup... \e[0m"
rm -rf /vault_setup.sh /var/{cache,log}/* /var/lib/apt/lists/*
rm -rf /vault_setup.sh /var/{cache,log}/* /var/lib/apt/lists/*