1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gotosocial_ynh.git synced 2024-09-03 19:16:06 +02:00
gotosocial_ynh/scripts/_common.sh
2024-01-08 18:14:38 +01:00

42 lines
1.2 KiB
Bash

#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
#=================================================
# PERSONAL HELPERS
#=================================================
# custom function to detect armv6 and armv7
# ($YNH_ARCH returns armhf for both...)
detect_arch(){
local architecture
if uname -m | grep -q -E "arm64|aarch64" ; then
architecture="arm64"
elif uname -m | grep -q "64" ; then
architecture="amd64"
elif uname -m | grep -q "86" ; then
architecture="i386"
elif uname -m | grep -q "armv6" ; then
architecture="armv6"
elif uname -m | grep -q "armv7" ; then
architecture="armv7"
else
ynh_die --message="The script can't identify a valid architecture. Please report this error."
fi
echo $architecture
}
# custom function to change bash bool 0/1 to false/true
convert_bool(){
(("$1")) && echo "true" || echo "false"
}
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================