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

32 lines
249 B
Bash
Raw Normal View History

2017-11-14 16:05:26 +01:00
app=$YNH_APP_INSTANCE_NAME
db_user="$app"
install_dependance() {
ynh_install_app_dependencies postgresql php5-pgsql
}
psql_create_admin() {
ynh_psql_execute_as_root \
"CREATE USER ${1} WITH PASSWORD '${2}';"
}