File tree Expand file tree Collapse file tree 2 files changed +21
-16
lines changed Expand file tree Collapse file tree 2 files changed +21
-16
lines changed Original file line number Diff line number Diff line change 18
18
# the old method of installing from debian creates this group, but we must create it explicitly
19
19
# for the nix built version
20
20
21
- - name : create postgres group
22
- group :
23
- name : postgres
24
- state : present
25
-
26
- - name : create users
27
- user :
28
- name : postgres
29
- groups : postgres, ssl-cert
30
- createhome : yes
31
- append : no
32
- shell : /bin/bash # Set shell if needed, default is /bin/bash
33
- password : ' '
34
-
35
-
21
+ # - name: create postgres group
22
+ # group:
23
+ # name: postgres
24
+ # state: present
25
+
26
+ # - name: create users
27
+ # user:
28
+ # name: postgres
29
+ # groups: postgres, ssl-cert
30
+ # createhome: yes
31
+ # append: no
32
+ # shell: /bin/bash # Set shell if needed, default is /bin/bash
33
+ # password: ''
34
+
35
+ - name : create postgres user
36
+ shell : useradd -m -r -s /bin/bash postgres
37
+ args :
38
+ executable : /bin/bash
39
+ become : yes
40
+
36
41
- name : Create relevant directories
37
42
file :
38
43
path : ' {{ item }}'
Original file line number Diff line number Diff line change 1
- postgres-version = " 15.6.1.34 -nix-staged"
1
+ postgres-version = " 15.6.1.35 -nix-staged"
You can’t perform that action at this time.
0 commit comments