1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/vikunja_ynh.git synced 2024-09-03 18:06:26 +02:00

Update _common.sh

This commit is contained in:
ericgaspar 2022-01-04 19:10:53 +01:00
parent 484c205543
commit 01f58eb431
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -19,34 +19,6 @@ pkg_dependencies="postgresql apt-transport-https"
# FUTURE OFFICIAL HELPERS
#=================================================
# Check the architecture
#
# example: architecture=$(ynh_detect_arch)
#
# usage: ynh_detect_arch
#
# Requires YunoHost version 2.2.4 or higher.
ynh_detect_arch(){
local architecture
if [ -n "$(uname -m | grep arm64)" ] || [ -n "$(uname -m | grep aarch64)" ]; then
architecture="arm64"
elif [ -n "$(uname -m | grep 64)" ]; then
architecture="amd64"
elif [ -n "$(uname -m | grep 86)" ]; then
architecture="386"
elif [ -n "$(uname -m | grep armv7)" ]; then
architecture="arm7"
elif [ -n "$(uname -m | grep armv6)" ]; then
architecture="arm6"
elif [ -n "$(uname -m | grep armv5)" ]; then
architecture="arm5"
else
architecture="unknown"
fi
echo $architecture
}
#=================================================
# REDIS HELPERS
#=================================================