We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 741fde9 commit 7dedb19Copy full SHA for 7dedb19
ansible-nix/tasks/stage2/stage2-setup-postgres.yml
@@ -115,6 +115,14 @@
115
- "/home/postgres/.nix-profile/bin/*"
116
become: yes
117
118
+- name: Create symbolic links from /home/postgres/.nix-profile/bin to /usr/bin
119
+ file:
120
+ src: "{{ item }}"
121
+ dest: "/usr/bin/{{ item | basename }}"
122
+ state: link
123
+ with_fileglob:
124
+ - "/home/postgres/.nix-profile/bin/*"
125
+ become: yes
126
127
- name: Create symbolic links from /home/postgres/.nix-profile/share/postgresql to /usr/lib/postgresql/share/postgresql
128
file:
common-nix.vars.pkr.hcl
@@ -1 +1 @@
1
-postgres-version = "15.6.1.23-nix-staged"
+postgres-version = "15.6.1.24-nix-staged"
0 commit comments