8000
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 a162e5a commit 862d0e0Copy full SHA for 862d0e0
contrib/pg_dtm/tests/deploy_layouts/roles/postgrespro/tasks/main.yml
@@ -44,6 +44,13 @@
44
depth=1
45
register: pg_sources
46
47
+- name: remove binaries if sources have changed
48
+ file: dest={{item}} state=absent
49
+ with_items:
50
+ - "{{pg_dst}}"
51
+ - "{{dtmd.dst}}"
52
+ when: pg_sources.changed
53
+
54
- include: postgres.yml
55
when: deploy_postgres
56
contrib/pg_dtm/tests/deploy_layouts/roles/postgrespro/tasks/postgres.yml
@@ -1,10 +1,3 @@
1
-- name: remove binaries if sources have changed
2
- file: dest={{item}} state=absent
3
- with_items:
4
- - "{{pg_dst}}"
5
- - "{{dtmd.dst}}"
6
- when: pg_sources.changed
7
-
8
- name: build postgrespro
9
shell: ./configure --prefix={{pg_dst}} --without-zlib && make clean && make -j {{makejobs}} && make install
10
args:
0 commit comments