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 feec1e5 commit 1444882Copy full SHA for 1444882
ansible/tasks/stage2-setup-postgres.yml
@@ -32,6 +32,20 @@
32
/etc/postgresql/postgresql.conf
33
when: is_psql_oriole and stage2_nix
34
become: yes
35
+ - name: Append orioledb to shared_preload_libraries append within closing quote
36
+ ansible.builtin.command:
37
+ cmd: >
38
+ sed -i 's/\(shared_preload_libraries.*\)'\''\(.*\)$/\1, orioledb'\''\2/'
39
+ /etc/postgresql/postgresql.conf
40
+ when: is_psql_oriole and stage2_nix
41
+ become: yes
42
+ - name: Add default_table_access_method setting
43
+ ansible.builtin.lineinfile:
44
+ path: /etc/postgresql/postgresql.conf
45
+ line: "default_table_access_method = 'orioledb'"
46
+ state: present
47
48
49
50
- name: Install Git for Nix package management
51
0 commit comments