1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/beehive_ynh.git synced 2024-09-03 18:06:24 +02:00
beehive_ynh/scripts/_common.sh

36 lines
1 KiB
Bash
Raw Normal View History

2021-03-07 01:45:20 +01:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
2021-06-13 15:49:55 +02:00
2021-03-07 01:45:20 +01:00
#=================================================
# PERSONAL HELPERS
#=================================================
2021-06-13 15:49:55 +02:00
# 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"
2021-03-07 01:45:20 +01:00
else
2021-06-13 15:49:55 +02:00
architecture="unknown"
2021-03-07 01:45:20 +01:00
fi
2021-06-13 15:49:55 +02:00
echo $architecture
2021-03-07 01:45:20 +01:00
}