From f4f12dad136b5447f76a92db94b6756f4464c090 Mon Sep 17 00:00:00 2001 From: nemsia Date: Tue, 11 Apr 2017 11:47:25 +0200 Subject: [PATCH] Update .fonctions --- scripts/.fonctions | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/.fonctions b/scripts/.fonctions index 7d9c54d..902d62c 100644 --- a/scripts/.fonctions +++ b/scripts/.fonctions @@ -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 -} \ No newline at end of file +}