mirror of https://github.com/tteck/Proxmox.git
				
				
				
			Fix Vaultwarden/Web-vault Update scripts (#355)
* Update and rename vaultwarden-update.sh to web-vault-update.sh * Create vaultwarden-update.sh * Update web-vault-update.sh * Update web-vault-update.sh * Update web-vault-update.sh * Update web-vault-update.sh * Update web-vault-update.sh * Update vaultwarden-update.sh * Update README.md * Update CHANGELOG.MD * Update vaultwarden-update.sh * Update vaultwarden-update.sh * Update README.md * Update vaultwarden-update.sh * Update vaultwarden-update.sh
This commit is contained in:
		
							parent
							
								
									eea8c0701e
								
							
						
					
					
						commit
						bdee71bc74
					
				| 
						 | 
				
			
			@ -3,6 +3,14 @@
 | 
			
		|||
# Change Log
 | 
			
		||||
All notable changes to this project will be documented in this file.
 | 
			
		||||
 | 
			
		||||
## 2022-07-17
 | 
			
		||||
 | 
			
		||||
### Changed
 | 
			
		||||
 | 
			
		||||
- **Vaultwarden LXC**
 | 
			
		||||
  - NEW Vaultwarden Update (post 2022-05-29 only) Script
 | 
			
		||||
  - NEW Web-vault Update (any) Script
 | 
			
		||||
 | 
			
		||||
## 2022-07-14
 | 
			
		||||
 | 
			
		||||
### Changed
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										12
									
								
								README.md
								
								
								
								
							
							
						
						
									
										12
									
								
								README.md
								
								
								
								
							| 
						 | 
				
			
			@ -1888,7 +1888,7 @@ ________________________________________________________________________________
 | 
			
		|||
</details>
 | 
			
		||||
 | 
			
		||||
<details>
 | 
			
		||||
<summary markdown="span"> Vaultwarden LXC</summary>
 | 
			
		||||
<summary markdown="span"> 🔸Vaultwarden LXC</summary>
 | 
			
		||||
 
 | 
			
		||||
<p align="center"><img src="https://raw.githubusercontent.com/dani-garcia/vaultwarden/main/resources/vaultwarden-icon-white.svg" width="100" height="100"/></p>
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1909,19 +1909,25 @@ Expect 30+ minute install time.
 | 
			
		|||
<h3 align="center" id="heading">⚡ Build Settings:  2048Mib RAM - 6GB Storage - 2vCPU ⚡</h3>
 | 
			
		||||
<h3 align="center" id="heading">⚡ Normal Settings:  512Mib RAM - 6GB Storage - 1vCPU ⚡</h3>
 | 
			
		||||
 | 
			
		||||
**Vaultwarden Interface - IP:8000**
 | 
			
		||||
**Vaultwarden Interface: CTIP:8000**
 | 
			
		||||
 | 
			
		||||
⚙️ **Path to Vaultwarden .env file** (to enable `ADMIN_TOKEN`)
 | 
			
		||||
```yaml
 | 
			
		||||
/opt/vaultwarden/.env
 | 
			
		||||
```
 | 
			
		||||
 
 | 
			
		||||
⚙️ **To Update Vaultwarden**
 | 
			
		||||
⚙️ **To Update Vaultwarden (post 2022-05-29 only)**
 | 
			
		||||
 | 
			
		||||
Run in the LXC console
 | 
			
		||||
```yaml
 | 
			
		||||
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/vaultwarden-update.sh)"
 | 
			
		||||
```
 | 
			
		||||
⚙️ **To Update Web-vault (any)**
 | 
			
		||||
 | 
			
		||||
Run in the LXC console
 | 
			
		||||
```yaml
 | 
			
		||||
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/web-vault-update.sh)"
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
____________________________________________________________________________________________ 
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
#!/bin/sh
 | 
			
		||||
VWRELEASE=$(curl -s https://api.github.com/repos/dani-garcia/bw_web_builds/releases/latest \
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
VAULT=$(curl -s https://api.github.com/repos/dani-garcia/vaultwarden/releases/latest \
 | 
			
		||||
| grep "tag_name" \
 | 
			
		||||
| awk '{print substr($2, 2, length($2)-3) }') \
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -16,13 +16,13 @@ echo -e "${BL}
 | 
			
		|||
   \ \/ / _  | | | | | __\ \ /\ / / _  |  __/ _  |/ _ \  _ \ 
 | 
			
		||||
    \  / (_| | |_| | | |_ \ V  V / (_| | | | (_| |  __/ | | |
 | 
			
		||||
     \/ \__,_|\__,_|_|\__| \_/\_/ \__,_|_|  \__,_|\___|_| |_|
 | 
			
		||||
                            UPDATE                                                                                                                        
 | 
			
		||||
                        ${VAULT} UPDATE                                                                                                                        
 | 
			
		||||
${CL}"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
update_info
 | 
			
		||||
while true; do
 | 
			
		||||
    read -p "This will Update Vaultwarden to $VWRELEASE. Proceed(y/n)?" yn
 | 
			
		||||
    read -p "This will Update Vaultwarden to $VAULT (set 2vCPU 2048MiB RAM Min.). Proceed(y/n)?" yn
 | 
			
		||||
    case $yn in
 | 
			
		||||
        [Yy]* ) break;;
 | 
			
		||||
        [Nn]* ) exit;;
 | 
			
		||||
| 
						 | 
				
			
			@ -34,18 +34,17 @@ echo -e "${GN} Stopping Vaultwarden... ${CL}"
 | 
			
		|||
systemctl stop vaultwarden.service
 | 
			
		||||
sleep 1
 | 
			
		||||
 | 
			
		||||
echo -e "${GN} Updating to ${VWRELEASE}... ${CL}"
 | 
			
		||||
curl -fsSLO https://github.com/dani-garcia/bw_web_builds/releases/download/$VWRELEASE/bw_web_$VWRELEASE.tar.gz &>/dev/null
 | 
			
		||||
if [ -d "/var/lib/vaultwarden" ]; then
 | 
			
		||||
tar -xzf bw_web_$VWRELEASE.tar.gz -C /var/lib/vaultwarden/ &>/dev/null
 | 
			
		||||
else 
 | 
			
		||||
tar -zxf bw_web_$VWRELEASE.tar.gz -C /opt/vaultwarden/ &>/dev/null
 | 
			
		||||
fi
 | 
			
		||||
echo -e "${GN} Updating (Building) to ${VAULT} (Patience)... ${CL}"
 | 
			
		||||
git clone https://github.com/dani-garcia/vaultwarden &>/dev/null
 | 
			
		||||
cd vaultwarden
 | 
			
		||||
cargo build --features "sqlite,mysql,postgresql" --release &>/dev/null
 | 
			
		||||
cp target/release/vaultwarden /opt/vaultwarden/bin/
 | 
			
		||||
 | 
			
		||||
echo -e "${GN} Cleaning up... ${CL}"
 | 
			
		||||
rm bw_web_$VWRELEASE.tar.gz
 | 
			
		||||
 | 
			
		||||
echo -e "${GN} Starting Vaultwarden... ${CL}"
 | 
			
		||||
echo -e "${GN} Starting Vaultwarden ${VAULT}... ${CL}"
 | 
			
		||||
systemctl start vaultwarden.service
 | 
			
		||||
sleep 1
 | 
			
		||||
echo -e "${GN} Finished Update ${CL}"
 | 
			
		||||
 | 
			
		||||
echo -e "${GN} Cleaning up... ${CL}"
 | 
			
		||||
cd ~ && rm -rf vaultwarden
 | 
			
		||||
 | 
			
		||||
echo -e "${GN} Finished Update (set resources back to normal settings)${CL}"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -0,0 +1,50 @@
 | 
			
		|||
#!/usr/bin/env bash
 | 
			
		||||
VWRELEASE=$(curl -s https://api.github.com/repos/dani-garcia/bw_web_builds/releases/latest \
 | 
			
		||||
| grep "tag_name" \
 | 
			
		||||
| awk '{print substr($2, 2, length($2)-3) }') \
 | 
			
		||||
 | 
			
		||||
RD=`echo "\033[01;31m"`
 | 
			
		||||
BL=`echo "\033[36m"`
 | 
			
		||||
CM='\xE2\x9C\x94\033'
 | 
			
		||||
GN=`echo "\033[1;92m"`
 | 
			
		||||
CL=`echo "\033[m"`
 | 
			
		||||
function update_info {
 | 
			
		||||
echo -e "${BL}
 | 
			
		||||
 __          __  _                            _ _   
 | 
			
		||||
 \ \        / / | |                          | | |  
 | 
			
		||||
  \ \  /\  / /__| |__ ________   ____ _ _   _| | |_ 
 | 
			
		||||
   \ \/  \/ / _ \  _ \______\ \ / / _  | | | | | __|
 | 
			
		||||
    \  /\  /  __/ |_) |      \ V / (_| | |_| | | |_ 
 | 
			
		||||
     \/  \/ \___|_.__/        \_/ \__,_|\__,_|_|\__|
 | 
			
		||||
                   ${VWRELEASE} UPDATE                                                                                                                        
 | 
			
		||||
${CL}"
 | 
			
		||||
}
 | 
			
		||||
update_info
 | 
			
		||||
while true; do
 | 
			
		||||
    read -p "This will Update Web-Vault to $VWRELEASE. Proceed(y/n)?" yn
 | 
			
		||||
    case $yn in
 | 
			
		||||
        [Yy]* ) break;;
 | 
			
		||||
        [Nn]* ) exit;;
 | 
			
		||||
        * ) echo "Please answer yes or no.";;
 | 
			
		||||
    esac
 | 
			
		||||
done
 | 
			
		||||
sleep 2
 | 
			
		||||
echo -e "${GN} Stopping Vaultwarden... ${CL}"
 | 
			
		||||
systemctl stop vaultwarden.service
 | 
			
		||||
sleep 1
 | 
			
		||||
 | 
			
		||||
echo -e "${GN} Updating to ${VWRELEASE}... ${CL}"
 | 
			
		||||
curl -fsSLO https://github.com/dani-garcia/bw_web_builds/releases/download/$VWRELEASE/bw_web_$VWRELEASE.tar.gz &>/dev/null
 | 
			
		||||
if [ -d "/var/lib/vaultwarden" ]; then
 | 
			
		||||
tar -xzf bw_web_$VWRELEASE.tar.gz -C /var/lib/vaultwarden/ &>/dev/null
 | 
			
		||||
else 
 | 
			
		||||
tar -zxf bw_web_$VWRELEASE.tar.gz -C /opt/vaultwarden/ &>/dev/null
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
echo -e "${GN} Cleaning up... ${CL}"
 | 
			
		||||
rm bw_web_$VWRELEASE.tar.gz
 | 
			
		||||
 | 
			
		||||
echo -e "${GN} Starting Vaultwarden... ${CL}"
 | 
			
		||||
systemctl start vaultwarden.service
 | 
			
		||||
sleep 1
 | 
			
		||||
echo -e "${GN} Finished Update ${CL}"
 | 
			
		||||
		Loading…
	
		Reference in New Issue