Add atop command as configurable

Change-Id: I4f9f77bceec0da999457c5b3d71f410ab262e2a8
This commit is contained in:
Sagi Shnaidman 2019-02-27 15:57:30 +02:00
parent 5d927f0c97
commit dae4977970
2 changed files with 2 additions and 1 deletions

View File

@ -40,3 +40,4 @@ undercloud_ara_version: 0.15.0
# each branch - https://bugs.launchpad.net/tripleo/+bug/1792622
undercloud_ara: false
install_atop: true
atop_command: atop -R -w /var/log/atop.bin

View File

@ -11,6 +11,6 @@
{{ ansible_pkg_mgr }} install -y $atop_location
- name: Run atop
shell: atop -R -w /var/log/atop.bin &
shell: "{{ atop_command }} &"
async: 0
poll: 0