2020-11-03 21:28:45 +01:00
|
|
|
#!/bin/bash
|
2021-09-29 02:41:30 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2020-11-03 21:28:45 +01:00
|
|
|
|
2022-11-24 00:22:09 +01:00
|
|
|
source _common.sh
|
2021-09-29 02:41:30 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2020-11-03 21:28:45 +01:00
|
|
|
|
2021-09-29 02:41:30 +02:00
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
2022-11-24 00:22:09 +01:00
|
|
|
node_id=$(ynh_app_setting_get $app node_id)
|
2022-11-29 14:38:41 +01:00
|
|
|
virtualisation=$(ynh_app_setting_get $app virtualisation)
|
|
|
|
datadir=$(ynh_app_setting_get $app datadir)
|
|
|
|
nbd_index=$(ynh_app_setting_get $app nbd_index)
|
2022-11-24 00:22:09 +01:00
|
|
|
command="$final_path/garage -c $final_path/garage.toml"
|
2021-09-29 02:41:30 +02:00
|
|
|
|
2022-11-29 14:38:41 +01:00
|
|
|
get__weight() {
|
2022-11-24 00:22:09 +01:00
|
|
|
ynh_app_setting_get --app=$app --key=weight
|
2020-11-03 21:28:45 +01:00
|
|
|
}
|
|
|
|
|
2022-11-29 14:38:41 +01:00
|
|
|
set__weight() {
|
|
|
|
if [ "$virtualisation" = "true" ]
|
|
|
|
then
|
|
|
|
systemctl stop $YNH_APP_INSTANCE_NAME
|
|
|
|
old_weight="$ynh_app_setting_get --app=$app --key=weight"
|
|
|
|
if [ $old_weight -le $weight }
|
|
|
|
then
|
|
|
|
$final_path/umount_disk.sh $nbd_index
|
|
|
|
qemu-img resize $datadir/$datadir/garage_data.qcow2 $weightG
|
|
|
|
qemu-nbd --connect /dev/nbd$nbd_index $datadir/garage.qcow2
|
|
|
|
e2fsck -f /dev/nbd$nbd_index
|
|
|
|
resize2fs /dev/nbd$nbd_index
|
|
|
|
mount /dev/nbd$nbd_index $datadir/data/
|
|
|
|
else
|
|
|
|
umount /dev/nbd$nbd_index
|
|
|
|
e2fsck -f /dev/nbd$nbd_index
|
|
|
|
resize2fs /dev/nbd$nbd_index $weightG
|
|
|
|
qemu-nbd --disconnect /dev/nbd$nbd_index
|
|
|
|
qemu-img resize $datadir/$datadir/garage_data.qcow2 $weightG
|
|
|
|
$nbd_index=$(final_path/mount_disk.sh false)
|
|
|
|
ynh_app_setting_set --app=$app --key=nbd_index --value=$nbd_index
|
|
|
|
fi
|
|
|
|
systemctl start $YNH_APP_INSTANCE_NAME
|
|
|
|
fi
|
|
|
|
$command layout assign $node_id -c $weight 2>/dev/null
|
2022-11-24 00:22:09 +01:00
|
|
|
apply_layout "$command"
|
|
|
|
ynh_app_setting_set --app=$app --key=weight --value=$weight
|
2020-11-03 21:28:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-29 14:38:41 +01:00
|
|
|
get__bootstrap_peers() {
|
2022-11-24 00:22:09 +01:00
|
|
|
ynh_app_setting_get --app=$app --key=bootstrap_peers
|
2020-11-03 21:28:45 +01:00
|
|
|
}
|
|
|
|
|
2022-11-29 14:38:41 +01:00
|
|
|
set__bootstrap_peers() {
|
|
|
|
garage_connect "$command" "$bootstrap_peers" 2>/dev/null
|
2022-11-24 00:22:09 +01:00
|
|
|
apply_layout "$command"
|
|
|
|
ynh_app_setting_set --app=$app --key=bootstrap_peers --value=$bootstrap_peers
|
2020-11-03 21:28:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#=================================================
|
2021-09-29 02:41:30 +02:00
|
|
|
# GENERIC FINALIZATION
|
2020-11-03 21:28:45 +01:00
|
|
|
#=================================================
|
2021-09-29 02:41:30 +02:00
|
|
|
ynh_app_config_run $1
|