Browse Source

Move to directory when running postgresql queries

Bob Mottram 7 years ago
parent
commit
bca1e90808
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      src/freedombone-utils-postgresql

+ 8
- 0
src/freedombone-utils-postgresql View File

87
 function add_postgresql_user {
87
 function add_postgresql_user {
88
     postgresql_username=$1
88
     postgresql_username=$1
89
     postgresql_password=$2
89
     postgresql_password=$2
90
+    cd /etc/postgresql
90
     if [[ "$3" != 'encrypt'* ]]; then
91
     if [[ "$3" != 'encrypt'* ]]; then
91
         sudo -u postgres psql -c "create user $postgresql_username password '$postgresql_password';"
92
         sudo -u postgres psql -c "create user $postgresql_username password '$postgresql_password';"
92
     else
93
     else
97
 
98
 
98
 function remove_postgresql_user {
99
 function remove_postgresql_user {
99
     postgresql_username=$1
100
     postgresql_username=$1
101
+    cd /etc/postgresql
100
     sudo -u postgres psql -c "drop user $postgresql_username"
102
     sudo -u postgres psql -c "drop user $postgresql_username"
101
 }
103
 }
102
 
104
 
103
 function drop_database_postgresql {
105
 function drop_database_postgresql {
104
     database_name="$1"
106
     database_name="$1"
107
+    cd /etc/postgresql
105
     sudo -u postgres psql -c "drop database $database_name"
108
     sudo -u postgres psql -c "drop database $database_name"
106
 }
109
 }
107
 
110
 
108
 function run_system_query_postgresql {
111
 function run_system_query_postgresql {
109
     query=$1
112
     query=$1
113
+    cd /etc/postgresql
110
     sudo -u postgres psql -c "$query"
114
     sudo -u postgres psql -c "$query"
111
 }
115
 }
112
 
116
 
113
 function run_query_postgresql {
117
 function run_query_postgresql {
114
     database_name=$1
118
     database_name=$1
115
     database_query=$2
119
     database_query=$2
120
+    cd /etc/postgresql
116
     sudo -u postgres psql -d $database_name -c "$database_query"
121
     sudo -u postgres psql -d $database_name -c "$database_query"
117
 }
122
 }
118
 
123
 
119
 function run_query_postgresql_with_output {
124
 function run_query_postgresql_with_output {
120
     database_name=$1
125
     database_name=$1
121
     database_query=$2
126
     database_query=$2
127
+    cd /etc/postgresql
122
     output=$(sudo -u postgres psql -d $database_name -c << EOF
128
     output=$(sudo -u postgres psql -d $database_name -c << EOF
123
 $database_query
129
 $database_query
124
 EOF
130
 EOF
129
 function initialise_database_postgresql {
135
 function initialise_database_postgresql {
130
     database_name=$1
136
     database_name=$1
131
     database_file=$2
137
     database_file=$2
138
+    cd /etc/postgresql
132
     sudo -u postgres psql $database_name < $database_file
139
     sudo -u postgres psql $database_name < $database_file
133
     if [ ! "$?" = "0" ]; then
140
     if [ ! "$?" = "0" ]; then
134
         exit 7238525
141
         exit 7238525
152
 flush privileges;
159
 flush privileges;
153
 quit" > $INSTALL_DIR/batch.sql
160
 quit" > $INSTALL_DIR/batch.sql
154
     chmod 600 $INSTALL_DIR/batch.sql
161
     chmod 600 $INSTALL_DIR/batch.sql
162
+    cd /etc/postgresql
155
     sudo -u postgres psql -d $database_name --file=$INSTALL_DIR/batch.sql
163
     sudo -u postgres psql -d $database_name --file=$INSTALL_DIR/batch.sql
156
     shred -zu $INSTALL_DIR/batch.sql
164
     shred -zu $INSTALL_DIR/batch.sql
157
 }
165
 }