diff --git a/ansible-nix/tasks/stage2/stage2-setup-postgres.yml b/ansible-nix/tasks/stage2/stage2-setup-postgres.yml index db422dc52..dc8b3c79c 100644 --- a/ansible-nix/tasks/stage2/stage2-setup-postgres.yml +++ b/ansible-nix/tasks/stage2/stage2-setup-postgres.yml @@ -115,6 +115,14 @@ - "/home/postgres/.nix-profile/bin/*" become: yes +- name: Create symbolic links from /home/postgres/.nix-profile/bin to /usr/bin + file: + src: "{{ item }}" + dest: "/usr/bin/{{ item | basename }}" + state: link + with_fileglob: + - "/home/postgres/.nix-profile/bin/*" + become: yes - name: Create symbolic links from /home/postgres/.nix-profile/share/postgresql to /usr/lib/postgresql/share/postgresql file: diff --git a/common-nix.vars.pkr.hcl b/common-nix.vars.pkr.hcl index c6b3c31b0..8d6bd4284 100644 --- a/common-nix.vars.pkr.hcl +++ b/common-nix.vars.pkr.hcl @@ -1 +1 @@ -postgres-version = "15.6.1.23-nix-staged" +postgres-version = "15.6.1.24-nix-staged"