mirror of
https://github.com/YunoHost-Apps/acropolis_ynh.git
synced 2024-09-03 18:06:22 +02:00
30 lines
No EOL
901 B
Bash
30 lines
No EOL
901 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
# dependencies used by the app
|
|
pkg_dependencies="build-essential git curl gsfonts imagemagick libmagickwand-dev nodejs redis-server libssl-dev libcurl4-openssl-dev libxml2-dev libxslt1-dev libpq-dev postgresql postgresql-contrib libjemalloc-dev libreadline-dev cmake"
|
|
|
|
MEMORY_NEEDED="2560"
|
|
|
|
RUBY_VERSION="2.6"
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# FUTURE OFFICIAL HELPERS
|
|
#=================================================
|
|
|
|
exec_login_as() {
|
|
local user=$1
|
|
shift 1
|
|
ynh_exec_as $user --login "$@"
|
|
} |