1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/vaultwarden_ynh.git synced 2024-09-03 18:26:31 +02:00
vaultwarden_ynh/scripts/_common.sh

48 lines
1.5 KiB
Bash
Raw Normal View History

2019-08-05 01:29:15 +02:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
2022-09-03 17:36:52 +02:00
pkg_image="vaultwarden/server"
2019-08-05 01:29:15 +02:00
#=================================================
# PERSONAL HELPERS
#=================================================
2023-12-03 12:08:34 +01:00
_download_vaultwarden_from_docker() {
# Download, check integrity, uncompress the source of vaultwarden from app.src to his build directory
docker_arg=""
# Fixup for armhf
if [ "$YNH_ARCH" == "armhf" ]; then
2023-12-03 12:08:34 +01:00
docker_arg="--os_arch_variant=linux/arm/v7"
fi
ynh_docker_image_extract --dest_dir="$install_dir/build/" --image_spec="$pkg_image:$(ynh_app_upstream_version)" $docker_arg
# Move files from the extract to the live directory
ynh_secure_remove --file="$install_dir/live/"
mkdir -p "$install_dir/live/"
mv -f "$install_dir/build/"{vaultwarden,web-vault} "$install_dir/live/"
ynh_secure_remove --file="$install_dir/build"
# fixes the libssl.so.3 not found bug
libssl_path=$(which openssl)
if ! grep -q "$libssl_path" /etc/ld.so.conf ; then
echo "include $libssl_path" >> /etc/ld.so.conf
ldconfig
fi
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R "$app:$app" "$install_dir"
2023-12-03 12:08:34 +01:00
}
2019-08-05 01:29:15 +02:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================