diff options
author | zhihui wu <zhihui.wu2006+zte@gmail.com> | 2017-03-08 10:13:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-08 10:13:22 +0000 |
commit | 3ce816d42d510ce60ff775f70ef689b1d1d242b2 (patch) | |
tree | 5dfbabbdb138aeb5f5b584f3865b9222cb626b12 | |
parent | f7e61750b58d1e684ccd181895374af4feaafa26 (diff) | |
parent | a08224082642cb08c6362235d07e551d268b8b90 (diff) |
Merge "Remove hardcode from some playbooks"
-rw-r--r-- | qtip/driver/playbook/bwn_ng.yaml | 4 | ||||
-rw-r--r-- | qtip/driver/playbook/inxi.yaml | 4 | ||||
-rw-r--r-- | qtip/driver/playbook/top.yaml | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/qtip/driver/playbook/bwn_ng.yaml b/qtip/driver/playbook/bwn_ng.yaml index 99477856..f79bb04e 100644 --- a/qtip/driver/playbook/bwn_ng.yaml +++ b/qtip/driver/playbook/bwn_ng.yaml @@ -20,4 +20,6 @@ when: ansible_os_family == "Debian" - name: Run bwm-ng - shell: bwm-ng -o plain -c 1 > $HOME/qtip_result/bwm-dump.log
\ No newline at end of file + shell: bwm-ng -o plain -c 1 > bwm-dump.log + args: + chdir: '{{ dest_path }}/'
\ No newline at end of file diff --git a/qtip/driver/playbook/inxi.yaml b/qtip/driver/playbook/inxi.yaml index f6a0311d..a06da042 100644 --- a/qtip/driver/playbook/inxi.yaml +++ b/qtip/driver/playbook/inxi.yaml @@ -20,4 +20,6 @@ when: ansible_os_family == "Debian" - name: Run inxi - shell: inxi -b -c0 -n > $HOME/qtip_result/inxi.log + shell: inxi -b -c0 -n > inxi.log + args: + chdir: '{{ dest_path }}/' diff --git a/qtip/driver/playbook/top.yaml b/qtip/driver/playbook/top.yaml index 8de7e3d6..64584338 100644 --- a/qtip/driver/playbook/top.yaml +++ b/qtip/driver/playbook/top.yaml @@ -7,4 +7,6 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## - name: Collect cpu usage - shell: top -bn1 > $HOME/qtip_result/top.log + shell: top -bn1 > top.log + args: + chdir: '{{ dest_path }}/' |