1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00
pyinventory_ynh/scripts/_common.sh

92 lines
2.1 KiB
Bash
Raw Normal View History

2020-12-07 16:20:37 +01:00
#!/bin/bash
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
2020-12-07 16:20:37 +01:00
admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_IS_PUBLIC
app=$YNH_APP_INSTANCE_NAME
#=================================================
# SET CONSTANTS
#=================================================
public_path=/var/www/$app
final_path=/opt/yunohost/$app
2020-12-08 09:31:10 +01:00
log_path=/var/log/$app
log_file="${log_path}/pyinventory.log"
2020-12-07 16:20:37 +01:00
#=================================================
# COMMON VARIABLES
#=================================================
# dependencies used by the app
2020-12-12 18:46:07 +01:00
pkg_dependencies="build-essential python3-dev python3-pip python3-venv git \
postgresql postgresql-contrib python3-ldap libldap2-dev libsasl2-dev"
2020-12-07 16:20:37 +01:00
# PyInventory's version for PIP and settings file
2020-12-20 18:58:33 +01:00
pyinventory_version="0.8.2"
2020-12-07 16:20:37 +01:00
# Extra python packages:
pypi_extras="django-redis django-auth-ldap"
2020-12-07 16:20:37 +01:00
#=================================================
# Redis HELPERS
#=================================================
# get the first available redis database
#
# usage: ynh_redis_get_free_db
# | returns: the database number to use
ynh_redis_get_free_db() {
local result max db
result=$(redis-cli INFO keyspace)
# get the num
max=$(cat /etc/redis/redis.conf | grep ^databases | grep -Eow "[0-9]+")
db=0
# default Debian setting is 15 databases
for i in $(seq 0 "$max")
do
if ! echo "$result" | grep -q "db$i"
then
db=$i
break 1
fi
db=-1
done
test "$db" -eq -1 && ynh_die "No available Redis databases..."
echo "$db"
}
# Create a master password and set up global settings
# Please always call this script in install and restore scripts
#
# usage: ynh_redis_remove_db database
# | arg: database - the database to erase
ynh_redis_remove_db() {
local db=$1
redis-cli -n "$db" flushall
2020-12-09 17:49:11 +01:00
}
#=================================================
# Execute a command as another user
# usage: ynh_exec_as USER COMMAND [ARG ...]
ynh_exec_as() {
local USER=$1
shift 1
if [[ $USER = $(whoami) ]]; then
eval "$@"
else
sudo -u "$USER" "$@"
fi
2020-12-12 18:46:07 +01:00
}