diff --git a/ansible-nix/tasks/setup-postgres.yml b/ansible-nix/tasks/setup-postgres.yml index dea88daa6..af8a86053 100644 --- a/ansible-nix/tasks/setup-postgres.yml +++ b/ansible-nix/tasks/setup-postgres.yml @@ -32,6 +32,11 @@ shell: /bin/bash # Set shell if needed, default is /bin/bash password: '' +- name: Remove postgres user from users group + become: yes + command: gpasswd -d postgres users + + - name: Create relevant directories file: path: '{{ item }}' diff --git a/common-nix.vars.pkr.hcl b/common-nix.vars.pkr.hcl index 604654ef1..5a9508cc8 100644 --- a/common-nix.vars.pkr.hcl +++ b/common-nix.vars.pkr.hcl @@ -1 +1 @@ -postgres-version = "15.6.1.25-nix-staged" +postgres-version = "15.6.1.26-nix-staged"