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

35 lines
842 B
Bash
Raw Normal View History

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
2020-12-13 14:48:44 +01:00
nodejs_version=13
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
}