Skip to content

Commit 741fde9

Browse files
committed
get the group creation into the right place
1 parent caf2f14 commit 741fde9

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

ansible-nix/tasks/setup-pgbouncer.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
# PgBouncer
2-
- name: create ssl-cert group
3-
group:
4-
name: ssl-cert
5-
state: present
6-
72
- name: PgBouncer - download & install dependencies
83
apt:
94
pkg:

ansible-nix/tasks/setup-postgres.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010
# TODO These lines appear to be installing and configuring https://launchpad.net/ubuntu/+source/postgresql-common
1111
# as far as I can see, we don't need this now.
1212

13+
- name: create ssl-cert group
14+
group:
15+
name: ssl-cert
16+
state: present
17+
18+
# the old method of installing from debian creates this group, but we must create it explicitly
19+
# for the nix built version
20+
1321
- name: create postgres group
1422
group:
1523
name: postgres

common-nix.vars.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-version = "15.6.1.22-nix-staged"
1+
postgres-version = "15.6.1.23-nix-staged"

0 commit comments

Comments
 (0)