File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change 10
10
set_fact :
11
11
is_psql_oriole_16 : " {{ psql_version == 'psql_oriole-16' }}"
12
12
13
- - name : Remove 'timescaledb,' from supautils.conf if oriole-16 build
14
- ansible.builtin.lineinfile :
15
- path : /etc/postgresql/postgresql.conf if oriole-16 build
16
- regexp : ' timescaledb,'
17
- line : ' '
18
- state : absent
13
+ - name : Remove 'timescaledb,' from postgresql.conf if oriole-16 build
14
+ ansible.builtin.command :
15
+ cmd : sed -i 's/timescaledb,//g' /etc/postgresql/postgresql.conf
19
16
when : is_psql_oriole_16 and stage2_nix
20
17
become : yes
21
- - name : Remove 'timescaledb,' from postgresql.conf
22
- ansible.builtin.lineinfile :
23
- path : /etc/postgresql-custom/supautils.conf
24
- regexp : ' timescaledb,'
25
- line : ' '
26
- state : absent
18
+ - name : Remove 'timescaledb,' from supautils.conf
19
+ ansible.builtin.command :
20
+ cmd : sed -i 's/timescaledb,//g' /etc/postgresql-custom/supautils.conf
27
21
when : is_psql_oriole_16 and stage2_nix
28
22
become : yes
29
23
30
24
- name : Install Postgres from nix binary cache
31
25
become : yes
32
26
shell : |
33
27
sudo -u postgres bash -c ". /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh && nix profile install github:supabase/postgres/{{ git_commit_sha }}#{{psql_version}}/bin"
34
- # TODO (samrose) switch pg_prove sourcing to develop branch once PR is merged
35
28
when : stage2_nix
36
29
37
30
- name : Install pg_prove from nix binary cache
You can’t perform that action at this time.
0 commit comments