diff options
author | rexlee8776 <limingjiang@huawei.com> | 2017-11-16 08:49:16 +0000 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2017-12-13 02:46:28 +0000 |
commit | 7bd43b239b7be6f478399526a177922d4482bcc2 (patch) | |
tree | 6203df4e3a3d18fcc769c82e768bc5213b281151 /ansible/roles/install_spec_cpu2006 | |
parent | ce52059f5f78912eeff2d97235c1028c218bf960 (diff) |
bugfix: tc078 fails in some situations
1. make "SPECint_benchmark, runspec_iterations, runspec_tune, runspec_size,
runspec_rate" parameterized and change the default value "int^429" to "int"
2. remove "become: true" in some roles since it does not need root privilege
JIRA: YARDSTICK-852
Change-Id: Icb384bddc12911e2681a981d0504e0e142d1a8ec
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Diffstat (limited to 'ansible/roles/install_spec_cpu2006')
-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 |