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

46 lines
1.2 KiB
Bash
Raw Normal View History

2021-08-15 21:48:06 +02:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
# dependencies used by the app
2022-03-13 23:33:24 +01:00
pkg_dependencies="postgresql postgresql-contrib"
2021-08-15 21:48:06 +02:00
#=================================================
# PERSONAL HELPERS
#=================================================
2022-03-15 22:53:56 +01:00
# custom function to detect armv6 and armv7
# ($YNH_ARCH returns armhf for both...)
2022-03-15 22:50:47 +01:00
detect_arch(){
2022-03-15 22:47:43 +01:00
local architecture
if [ -n "$(uname -m | grep arm64)" ] || [ -n "$(uname -m | grep aarch64)" ]; then
architecture="arm64"
elif [ -n "$(uname -m | grep 64)" ]; then
architecture="x86-64"
elif [ -n "$(uname -m | grep 86)" ]; then
architecture="i386"
elif [ -n "$(uname -m | grep armv6)" ]; then
architecture="armv6"
elif [ -n "$(uname -m | grep armv7)" ]; then
architecture="armv7"
else
architecture="unknown"
fi
echo $architecture
}
# custom function to change bash bool 0/1 to false/true
convert_bool(){
2022-03-26 04:58:48 +01:00
(($1)) && echo "true" || echo "false"
}
2021-08-15 21:48:06 +02:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================