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:
parent
4afb8c2ff4
commit
6d27163e02
4 changed files with 27 additions and 5 deletions
|
@ -26,11 +26,6 @@ tweak_yunohost() {
|
||||||
}
|
}
|
||||||
|
|
||||||
setup_lxd() {
|
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..."
|
ynh_print_info "Configuring lxd..."
|
||||||
|
|
||||||
if [ "$cluster" -eq 1 ]; then
|
if [ "$cluster" -eq 1 ]; then
|
||||||
|
|
|
@ -7,6 +7,15 @@
|
||||||
source _common.sh
|
source _common.sh
|
||||||
source /usr/share/yunohost/helpers
|
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
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -14,6 +14,15 @@ source /usr/share/yunohost/helpers
|
||||||
|
|
||||||
ynh_maintenance_mode_ON
|
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
|
# RESTORE THE APP MAIN DIR
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -13,6 +13,15 @@ source /usr/share/yunohost/helpers
|
||||||
|
|
||||||
ynh_maintenance_mode_ON
|
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
|
# STOP SYSTEMD SERVICE
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue