From 64fa488a6b851021ed26864391c7ee32f9073332 Mon Sep 17 00:00:00 2001 From: jean-baptiste Date: Tue, 19 Sep 2017 19:00:11 +0200 Subject: [PATCH] postgressql finition --- scripts/_common.sh | 33 +++++++++++++++------------------ scripts/install | 8 ++++---- scripts/remove | 4 ++-- 3 files changed, 21 insertions(+), 24 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 2f03e84..96fef41 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -3,15 +3,16 @@ ynh_psql_test_if_first_run() { - if [ -f /etc/yunohost/pgsql ]; + if [ -f /etc/yunohost/psql ]; then - echo "Postgresql is already installed, no need to create master password" + echo "PostgreSQL is already installed, no need to create master password" else pgsql=$(ynh_string_random) - echo "$pgsql" >> /etc/yunohost/pgsql - psql postgres -c "\\password postgres" < echo "$pgsql" - systemctl service enable postgres - systemctl service start postgres + echo "$pgsql" >> /etc/yunohost/psql + systemctl start postgresql + sudo -u postgres psql -c"ALTER user postgres WITH PASSWORD '${pgsql}'" + systemctl enable postgresql + systemctl start postgresql fi } @@ -28,7 +29,7 @@ ynh_psql_connect_as() { user="$1" pwd="$2" db="$3" - psql "${db}" --username="${user}" --password < echo "${pwd}" + su "${user}" -c "psql \"${db}\"" } # # Execute a command as root user @@ -38,8 +39,7 @@ ynh_psql_connect_as() { # | arg: db - the database to connect to ynh_psql_execute_as_root () { sql="$1" - db="$2" - psql "${db}" --username="postgres" <<< "${sql}" + su postgres -c "psql <<< \"$sql\"" } # Execute a command from a file as root user @@ -84,16 +84,16 @@ ynh_psql_create_db() { user="$2" pwd="$3" ynh_psql_create_user "$user" "$pwd" - createdb --owner="${user}" "${db}" + su postgres -c "createdb --owner=\"${user}\" \"${db}\"" } # Drop a database # # usage: ynh_psql_drop_db db # | arg: db - the database name to drop -ynh_psql_drop_db() { +ynh_psql_remove_db() { db="$1" - dropdb "${db}" + su postgres -c "dropdb \"${db}\"" } # Dump a database @@ -105,7 +105,7 @@ ynh_psql_drop_db() { # | ret: the psqldump output ynh_psql_dump_db() { db="$1" - pg_dump "${db}" + su postgres -c "pg_dump \"${db}\"" } @@ -113,12 +113,9 @@ ynh_psql_dump_db() { # # usage: ynh_psql_create_user user pwd [host] # | arg: user - the user name to create -# | arg: pwd - the password to identify user by ynh_psql_create_user() { user="$1" - pwd="$2" - ynh_psql_execute_as_root \ - "CREATE USER '${user}' WITH PASSWORD '${pwd}';" + su postgres -c "createuser \"${user}\"" } # Drop a user @@ -127,5 +124,5 @@ ynh_psql_create_user() { # | arg: user - the user name to drop ynh_psql_drop_user() { user="$1" - dropuser "${user}" + su postgres -c "dropuser \"${user}\"" } diff --git a/scripts/install b/scripts/install index 5c7c408..f59c5b3 100755 --- a/scripts/install +++ b/scripts/install @@ -73,7 +73,7 @@ ynh_app_setting_set "$app" is_public "$is_public" ynh_install_app_dependencies libxml2-dev libxslt-dev libfreetype6-dev \ libjpeg-dev libz-dev libyaml-dev python-dev python-pip python-virtualenv \ - postgresql python-psycopg2 uwsgi + postgresql libpq-dev uwsgi #================================================= # CREATE A PostgreSQL DATABASE @@ -86,9 +86,9 @@ db_user_pwd=$(ynh_string_random) # Initialize database and store postgres password for upgrade ynh_psql_create_db "$db_name" "$app" "$db_user_pwd" ynh_app_setting_set "$app" db_name "$db_name" -ynh_app_setting_set "$app" psqlpwd "$db_pwd" +ynh_app_setting_set "$app" psqlpwd "$db_user_pwd" -systemctl reload postgres +systemctl reload postgresql #================================================= # NGINX CONFIGURATION @@ -140,7 +140,7 @@ virtualenv "${final_path}/venv" set +eu source "${final_path}/venv/bin/activate" "${final_path}/venv/bin/pip" install Weblate==2.16 - "${final_path}/venv/bin/pip" install pytz python-bidi PyYaML Babel pyuca pylibravatar pydns + "${final_path}/venv/bin/pip" install pytz python-bidi PyYaML Babel pyuca pylibravatar pydns psycopg2 ) #================================================= diff --git a/scripts/remove b/scripts/remove index 4b3b4c4..611b7bf 100755 --- a/scripts/remove +++ b/scripts/remove @@ -37,11 +37,11 @@ fi ynh_remove_app_dependencies #================================================= -# REMOVE THE MYSQL DATABASE +# REMOVE THE PostgreSQL DATABASE #================================================= # Remove a database if it exists, along with the associated user -ynh_mysql_remove_db $db_name $db_name +ynh_psql_remove_db $db_name $db_name #================================================= # REMOVE APP MAIN DIR