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

63 lines
1.8 KiB
Bash
Raw Normal View History

2021-03-16 23:36:39 +01:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
# dependencies used by the app
2021-03-23 23:57:30 +01:00
pkg_dependencies="acl nim redis-server libsass-dev"
2021-03-16 23:36:39 +01:00
#=================================================
# PERSONAL HELPERS
#=================================================
2021-04-18 03:40:36 +02:00
function build_nitter {
pushd "$final_path" || ynh_die
chown -R $app:$app $final_path
sudo -u $app env "PATH=/opt/yunohost/$app/nim-installation/bin:$(sudo -u $app sh -c 'echo $PATH')" nimble build -d:release -y
sudo -u $app env "PATH=/opt/yunohost/$app/nim-installation/bin:$(sudo -u $app sh -c 'echo $PATH')" nimble scss -y
mkdir -p $final_path/tmp
chown -R root:root $final_path
popd || ynh_die
}
function set_permissions {
chown -R root:$app $final_path
chown -R $app:$app $final_path/tmp
chmod -R g=u,g-w,o-rwx $final_path
setfacl -n -m u:www-data:--x $final_path
setfacl -nR -m u:www-data:r-x -m d:u:www-data:r-x $final_path/public
}
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
2021-03-18 04:45:54 +01: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="x86-64"
elif [ -n "$(uname -m | grep 86)" ]; then
architecture="i386"
elif [ -n "$(uname -m | grep arm)" ]; then
architecture="arm"
else
architecture="unknown"
fi
echo $architecture
}
2021-03-16 23:36:39 +01:00
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================