2020-10-20 13:46:23 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# dependencies used by the app
|
2020-10-20 14:05:43 +02:00
|
|
|
pkg_dependencies="postgresql postgresql-contrib apt-transport-https"
|
2020-10-20 13:46:23 +02:00
|
|
|
|
2021-01-24 12:18:26 +01:00
|
|
|
nodejs_version=14
|
2020-10-20 13:46:23 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# 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
|
2021-01-24 12:18:26 +01:00
|
|
|
}
|