Skip to content

Commit

Permalink
ceph_ansible: Make ceph_installer.run args consistent
Browse files Browse the repository at this point in the history
Fixes: https://tracker.ceph.com/issues/43798

Signed-off-by: Brad Hubbard <[email protected]>
  • Loading branch information
badone committed Jan 28, 2020
1 parent 7063d1e commit 9aa5175
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions teuthology/task/ceph_ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,9 +466,9 @@ def _copy_and_print_config(self):
# copy extra vars to groups/all
ceph_installer.put_file(self.extra_vars_file, 'ceph-ansible/group_vars/all')
# print for debug info
ceph_installer.run(args=('cat', 'ceph-ansible/inven.yml'))
ceph_installer.run(args=('cat', 'ceph-ansible/site.yml'))
ceph_installer.run(args=('cat', 'ceph-ansible/group_vars/all'))
ceph_installer.run(args=['cat', 'ceph-ansible/inven.yml'])
ceph_installer.run(args=['cat', 'ceph-ansible/site.yml'])
ceph_installer.run(args=['cat', 'ceph-ansible/group_vars/all'])

def _create_rbd_pool(self):
mon_node = self.ceph_first_mon
Expand Down

0 comments on commit 9aa5175

Please sign in to comment.