Add flag to control logging the rsyncs
rsyncing the puppet modules can be super chatty and not super interesting. Add a flag to turn it off. Change-Id: I7206955aeb335adafb8625c89d8b8a70078d666c
This commit is contained in:
parent
0505f79daa
commit
eafdbf9593
@ -19,3 +19,4 @@ puppet_timeout: 30m
|
|||||||
futureparser: False
|
futureparser: False
|
||||||
mgmt_manifestpath: '{{ manifest_base }}/{{ puppet_environment }}'
|
mgmt_manifestpath: '{{ manifest_base }}/{{ puppet_environment }}'
|
||||||
puppet_hieradata_link_dest: '{{ manifest_base }}/hieradata'
|
puppet_hieradata_link_dest: '{{ manifest_base }}/hieradata'
|
||||||
|
puppet_nolog_sync: false
|
||||||
|
@ -83,6 +83,7 @@
|
|||||||
synchronize:
|
synchronize:
|
||||||
src: "{{ mgmt_manifestpath }}"
|
src: "{{ mgmt_manifestpath }}"
|
||||||
dest: "{{ manifest_base }}"
|
dest: "{{ manifest_base }}"
|
||||||
|
no_log: "{{ puppet_nolog_sync | bool }}"
|
||||||
|
|
||||||
- name: ensure hieradata manifest link is present
|
- name: ensure hieradata manifest link is present
|
||||||
file:
|
file:
|
||||||
@ -116,6 +117,7 @@
|
|||||||
synchronize:
|
synchronize:
|
||||||
src: "{{ mgmt_puppet_module_dir }}"
|
src: "{{ mgmt_puppet_module_dir }}"
|
||||||
dest: "{{ puppet_module_dir }}"
|
dest: "{{ puppet_module_dir }}"
|
||||||
|
no_log: "{{ puppet_nolog_sync | bool }}"
|
||||||
|
|
||||||
when:
|
when:
|
||||||
- copy_puppet
|
- copy_puppet
|
||||||
|
Loading…
x
Reference in New Issue
Block a user