diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-12-16 09:21:57 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-12-16 09:21:57 +0000 |
commit | 1a86f049ec4d0a4371f2f0207cdf2db6d448af7e (patch) | |
tree | 957043451792f2eadfa454b4945464cf785ff316 /ansible/roles/install_spec_cpu2006/tasks/main.yaml | |
parent | 600f708444e556b0b658fcf86d3d0b14e27e2add (diff) | |
parent | 7bd43b239b7be6f478399526a177922d4482bcc2 (diff) |
Merge "bugfix: tc078 fails in some situations"
Diffstat (limited to 'ansible/roles/install_spec_cpu2006/tasks/main.yaml')
-rw-r--r-- | ansible/roles/install_spec_cpu2006/tasks/main.yaml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ansible/roles/install_spec_cpu2006/tasks/main.yaml b/ansible/roles/install_spec_cpu2006/tasks/main.yaml index baa9f6ca0..ea698f5a2 100644 --- a/ansible/roles/install_spec_cpu2006/tasks/main.yaml +++ b/ansible/roles/install_spec_cpu2006/tasks/main.yaml @@ -12,13 +12,11 @@ copy: src: /home/opnfv/repos/yardstick/yardstick/resources/cpu2006-1.2.iso dest: ~/cpu2006-1.2.iso - become: true - name: install SPEC CPU2006 shell: - mount -t iso9660 -o ro,exec ~/cpu2006-1.2.iso /mnt; + sudo mount -t iso9660 -o ro,exec ~/cpu2006-1.2.iso /mnt; cd /mnt; - ./install.sh -fd /usr/cpu2006; + ./install.sh -fd ~/cpu2006; args: executable: /bin/bash - become: true |