Browse Source

Affix Postgres to version 9.1.

Addresses #362.
Alex Payne 10 years ago
parent
commit
177ac9222b

+ 1
- 1
roles/mailserver/tasks/dovecot.yml View File

19
     - dovecot-managesieved
19
     - dovecot-managesieved
20
     - dovecot-pgsql
20
     - dovecot-pgsql
21
     - dovecot-pop3d
21
     - dovecot-pop3d
22
-    - postgresql-9.3
22
+    - postgresql-9.1
23
   when: ansible_distribution_release == 'trusty'
23
   when: ansible_distribution_release == 'trusty'
24
 
24
 
25
 - name: Create vmail group
25
 - name: Create vmail group

+ 2
- 2
roles/mailserver/tasks/postfix.yml View File

11
     - sasl2-bin
11
     - sasl2-bin
12
   when: ansible_distribution_release != 'trusty'
12
   when: ansible_distribution_release != 'trusty'
13
 
13
 
14
-- name: Install Postfix 9.3 and related packages for Ubuntu Trusty
14
+- name: Install Postfix 9.1 and related packages for Ubuntu Trusty
15
   apt: pkg={{ item }} state=installed
15
   apt: pkg={{ item }} state=installed
16
   with_items:
16
   with_items:
17
     - libsasl2-modules
17
     - libsasl2-modules
18
     - postfix
18
     - postfix
19
     - postfix-pcre
19
     - postfix-pcre
20
     - postfix-pgsql
20
     - postfix-pgsql
21
-    - postgresql-9.3
21
+    - postgresql-9.1
22
     - postgrey
22
     - postgrey
23
     - python-psycopg2
23
     - python-psycopg2
24
     - sasl2-bin
24
     - sasl2-bin

+ 1
- 1
roles/owncloud/tasks/owncloud.yml View File

7
     - libapache2-mod-php5
7
     - libapache2-mod-php5
8
     - php-apc
8
     - php-apc
9
     - python-psycopg2
9
     - python-psycopg2
10
-    - postgresql-9.3
10
+    - postgresql-9.1
11
 
11
 
12
 - name: Set postgres password
12
 - name: Set postgres password
13
   command: sudo -u {{ db_admin_username }} psql -d {{ db_admin_username }} -c "ALTER USER postgres with  password '{{ db_admin_password }}';"
13
   command: sudo -u {{ db_admin_username }} psql -d {{ db_admin_username }} -c "ALTER USER postgres with  password '{{ db_admin_password }}';"

Loading…
Cancel
Save