1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mastodon_ynh.git synced 2024-09-03 19:46:02 +02:00

Update .fonctions

This commit is contained in:
nemsia 2017-04-11 11:47:25 +02:00 committed by GitHub
parent c893f503ab
commit f4f12dad13

View file

@ -155,6 +155,15 @@ ynh_psql_create_user() {
"CREATE USER ${1} WITH PASSWORD '${2}';"
}
# Create a user without password
#
# usage: ynh_mysql_create_user user pwd [host]
# | arg: user - the user name to create
ynh_psql_create_user_without_password() {
sudo su -c "psql" postgres <<< \
"CREATE USER ${1};"
}
# Create a database and grant optionnaly privilegies to a user
#
# usage: ynh_mysql_create_db db [user [pwd]]
@ -187,4 +196,4 @@ ynh_psql_drop_db() {
# | arg: user - the user name to drop
ynh_psql_drop_user() {
sudo su -c "dropuser ${1}" postgres
}
}