1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yunorunner_ynh.git synced 2024-09-03 20:36:13 +02:00

Move install lxd outside common.sh

This commit is contained in:
Salamandar 2024-03-15 13:12:26 +01:00
parent 4afb8c2ff4
commit 6d27163e02
4 changed files with 27 additions and 5 deletions

View file

@ -26,11 +26,6 @@ tweak_yunohost() {
}
setup_lxd() {
if ! yunohost app list --output-as json --quiet | jq -e '.apps[] | select(.id == "lxd")' >/dev/null; then
ynh_script_progression --message="Installing LXD... (this make take a long time!"
yunohost app install --force https://github.com/YunoHost-Apps/lxd_ynh
fi
ynh_print_info "Configuring lxd..."
if [ "$cluster" -eq 1 ]; then

View file

@ -7,6 +7,15 @@
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# INSTALL LXD
#=================================================
ynh_script_progression --message="Installing LXD... (this make take a long time!)"
if ! yunohost app list --output-as json --quiet | jq -e '.apps[] | select(.id == "lxd")' >/dev/null; then
yunohost app install --force https://github.com/YunoHost-Apps/lxd_ynh
fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================

View file

@ -14,6 +14,15 @@ source /usr/share/yunohost/helpers
ynh_maintenance_mode_ON
#=================================================
# INSTALL LXD
#=================================================
ynh_script_progression --message="Installing LXD... (this make take a long time!)"
if ! yunohost app list --output-as json --quiet | jq -e '.apps[] | select(.id == "lxd")' >/dev/null; then
yunohost app install --force https://github.com/YunoHost-Apps/lxd_ynh
fi
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================

View file

@ -13,6 +13,15 @@ source /usr/share/yunohost/helpers
ynh_maintenance_mode_ON
#=================================================
# INSTALL LXD
#=================================================
ynh_script_progression --message="Installing LXD... (this make take a long time!)"
if ! yunohost app list --output-as json --quiet | jq -e '.apps[] | select(.id == "lxd")' >/dev/null; then
yunohost app install --force https://github.com/YunoHost-Apps/lxd_ynh
fi
#=================================================
# STOP SYSTEMD SERVICE
#=================================================