2019-03-16 02:38:12 +01:00
|
|
|
#!/bin/bash
|
2017-06-20 19:09:43 +02:00
|
|
|
|
2018-12-19 00:02:20 +01:00
|
|
|
#=================================================
|
2019-03-16 02:38:12 +01:00
|
|
|
# SET ALL CONSTANTS
|
2018-12-19 00:02:20 +01:00
|
|
|
#=================================================
|
2019-01-26 14:30:58 +01:00
|
|
|
|
2019-03-16 02:38:12 +01:00
|
|
|
pkg_dependencies="openssh-server"
|
2017-06-20 19:09:43 +02:00
|
|
|
|
2018-12-19 00:02:20 +01:00
|
|
|
#=================================================
|
2019-03-16 02:38:12 +01:00
|
|
|
# PACKAGE CHECK BYPASSING...
|
2018-12-19 00:02:20 +01:00
|
|
|
#=================================================
|
2017-06-20 19:09:43 +02:00
|
|
|
|
2019-03-16 02:38:12 +01:00
|
|
|
IS_PACKAGE_CHECK () {
|
|
|
|
return $(env | grep -c container=lxc)
|
2019-01-13 15:44:16 +01:00
|
|
|
}
|
|
|
|
|
2019-04-12 23:55:10 +02:00
|
|
|
#=================================================
|
|
|
|
# BOOLEAN CONVERTER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
bool_to_01 () {
|
|
|
|
local var="$1"
|
|
|
|
[ "$var" = "true" ] && var=1
|
|
|
|
[ "$var" = "false" ] && var=0
|
|
|
|
echo "$var"
|
|
|
|
}
|
|
|
|
|
|
|
|
bool_to_true_false () {
|
|
|
|
local var="$1"
|
|
|
|
[ "$var" = "1" ] && var=true
|
|
|
|
[ "$var" = "0" ] && var=false
|
|
|
|
echo "$var"
|
|
|
|
}
|
|
|
|
|
2019-01-13 15:44:16 +01:00
|
|
|
#=================================================
|
2019-05-06 21:17:27 +02:00
|
|
|
# EXPERIMENTAL HELPERS
|
2019-01-13 15:44:16 +01:00
|
|
|
#=================================================
|
2019-05-06 21:17:27 +02:00
|
|
|
|
2019-05-09 00:01:27 +02:00
|
|
|
# Check if the device of the main mountpoint "/" is an SD card
|
|
|
|
#
|
|
|
|
# return 1 if it's an SD card, else 0
|
|
|
|
_ynh_is_main_device_is_sd_card () {
|
|
|
|
local main_device=$(lsblk --output PKNAME --noheadings $(findmnt / --nofsroot --uniq --output source --noheadings --first-only))
|
|
|
|
|
|
|
|
if echo $main_device | grep --quiet "mmc" && [ $(cat /sys/block/$main_device/queue/rotational) -eq 0 ]
|
|
|
|
then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-05-06 21:17:27 +02:00
|
|
|
# Add swap
|
2019-03-16 02:38:12 +01:00
|
|
|
#
|
2019-05-06 21:17:27 +02:00
|
|
|
# usage: ynh_add_swap --size=SWAP in Mb
|
|
|
|
# | arg: -s, --size= - Amount of SWAP to add in Mb.
|
|
|
|
ynh_add_swap () {
|
|
|
|
# Declare an array to define the options of this helper.
|
|
|
|
declare -Ar args_array=( [s]=size= )
|
|
|
|
local size
|
|
|
|
# Manage arguments with getopts
|
|
|
|
ynh_handle_getopts_args "$@"
|
|
|
|
|
|
|
|
local swap_max_size=$(( $size * 1024 ))
|
|
|
|
|
|
|
|
local free_space=$(df --output=avail / | sed 1d)
|
|
|
|
# Because we don't want to fill the disk with a swap file, divide by 2 the available space.
|
|
|
|
local usable_space=$(( $free_space / 2 ))
|
|
|
|
|
2019-05-09 00:01:27 +02:00
|
|
|
SD_CARD_CAN_SWAP=${SD_CARD_CAN_SWAP:-0}
|
|
|
|
|
|
|
|
# Swap on SD card only if it's is specified
|
|
|
|
if [ _ynh_is_main_device_is_sd_card ] && [ "$SD_CARD_CAN_SWAP" == "0" ]
|
|
|
|
then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2019-05-06 21:17:27 +02:00
|
|
|
# Compare the available space with the size of the swap.
|
|
|
|
# And set a acceptable size from the request
|
|
|
|
if [ $usable_space -ge $swap_max_size ]
|
|
|
|
then
|
|
|
|
local swap_size=$swap_max_size
|
|
|
|
elif [ $usable_space -ge $(( $swap_max_size / 2 )) ]
|
|
|
|
then
|
|
|
|
local swap_size=$(( $swap_max_size / 2 ))
|
|
|
|
elif [ $usable_space -ge $(( $swap_max_size / 3 )) ]
|
|
|
|
then
|
|
|
|
local swap_size=$(( $swap_max_size / 3 ))
|
|
|
|
elif [ $usable_space -ge $(( $swap_max_size / 4 )) ]
|
|
|
|
then
|
|
|
|
local swap_size=$(( $swap_max_size / 4 ))
|
|
|
|
else
|
|
|
|
echo "Not enough space left for a swap file" >&2
|
|
|
|
local swap_size=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If there's enough space for a swap, and no existing swap here
|
|
|
|
if [ $swap_size -ne 0 ] && [ ! -e /swap_$app ]
|
|
|
|
then
|
|
|
|
# Preallocate space for the swap file
|
|
|
|
fallocate -l ${swap_size}K /swap_$app
|
|
|
|
chmod 0600 /swap_$app
|
|
|
|
# Create the swap
|
|
|
|
mkswap /swap_$app
|
|
|
|
# And activate it
|
|
|
|
swapon /swap_$app
|
|
|
|
# Then add an entry in fstab to load this swap at each boot.
|
|
|
|
echo -e "/swap_$app swap swap defaults 0 0 #Swap added by $app" >> /etc/fstab
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
ynh_del_swap () {
|
|
|
|
# If there a swap at this place
|
|
|
|
if [ -e /swap_$app ]
|
|
|
|
then
|
|
|
|
# Clean the fstab
|
|
|
|
sed -i "/#Swap added by $app/d" /etc/fstab
|
|
|
|
# Desactive the swap file
|
|
|
|
swapoff /swap_$app
|
|
|
|
# And remove it
|
|
|
|
rm /swap_$app
|
|
|
|
fi
|
2019-01-26 14:46:52 +01:00
|
|
|
}
|
2019-03-17 14:58:34 +01:00
|
|
|
|
2019-05-06 21:17:27 +02:00
|
|
|
# Check the amount of available RAM
|
2019-03-17 14:58:34 +01:00
|
|
|
#
|
2019-05-06 21:17:27 +02:00
|
|
|
# usage: ynh_check_ram [--required=RAM required in Mb] [--no_swap|--only_swap] [--free_ram]
|
|
|
|
# | arg: -r, --required= - Amount of RAM required in Mb. The helper will return 0 is there's enough RAM, or 1 otherwise.
|
|
|
|
# If --required isn't set, the helper will print the amount of RAM, in Mb.
|
|
|
|
# | arg: -s, --no_swap - Ignore swap
|
|
|
|
# | arg: -o, --only_swap - Ignore real RAM, consider only swap.
|
|
|
|
# | arg: -f, --free_ram - Count only free RAM, not the total amount of RAM available.
|
|
|
|
ynh_check_ram () {
|
|
|
|
# Declare an array to define the options of this helper.
|
|
|
|
declare -Ar args_array=( [r]=required= [s]=no_swap [o]=only_swap [f]=free_ram )
|
|
|
|
local required
|
|
|
|
local no_swap
|
|
|
|
local only_swap
|
|
|
|
# Manage arguments with getopts
|
|
|
|
ynh_handle_getopts_args "$@"
|
|
|
|
required=${required:-}
|
|
|
|
no_swap=${no_swap:-0}
|
|
|
|
only_swap=${only_swap:-0}
|
|
|
|
|
|
|
|
local total_ram=$(vmstat --stats --unit M | grep "total memory" | awk '{print $1}')
|
|
|
|
local total_swap=$(vmstat --stats --unit M | grep "total swap" | awk '{print $1}')
|
|
|
|
local total_ram_swap=$(( total_ram + total_swap ))
|
|
|
|
|
|
|
|
local free_ram=$(vmstat --stats --unit M | grep "free memory" | awk '{print $1}')
|
|
|
|
local free_swap=$(vmstat --stats --unit M | grep "free swap" | awk '{print $1}')
|
|
|
|
local free_ram_swap=$(( free_ram + free_swap ))
|
|
|
|
|
|
|
|
# Use the total amount of ram
|
|
|
|
local ram=$total_ram_swap
|
|
|
|
if [ $free_ram -eq 1 ]
|
|
|
|
then
|
|
|
|
# Use the total amount of free ram
|
|
|
|
ram=$free_ram_swap
|
|
|
|
if [ $no_swap -eq 1 ]
|
|
|
|
then
|
|
|
|
# Use only the amount of free ram
|
|
|
|
ram=$free_ram
|
|
|
|
elif [ $only_swap -eq 1 ]
|
|
|
|
then
|
|
|
|
# Use only the amount of free swap
|
|
|
|
ram=$free_swap
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [ $no_swap -eq 1 ]
|
|
|
|
then
|
|
|
|
# Use only the amount of free ram
|
|
|
|
ram=$total_ram
|
|
|
|
elif [ $only_swap -eq 1 ]
|
|
|
|
then
|
|
|
|
# Use only the amount of free swap
|
|
|
|
ram=$total_swap
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$required" ]
|
|
|
|
then
|
|
|
|
# Return 1 if the amount of ram isn't enough.
|
|
|
|
if [ $ram -lt $required ]
|
|
|
|
then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If no RAM is required, return the amount of available ram.
|
|
|
|
else
|
|
|
|
echo $ram
|
|
|
|
fi
|
|
|
|
}
|