Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 1 | - hosts: all |
| 2 | name: Octavia DSVM jobs pre-run playbook |
| 3 | tasks: |
| 4 | - shell: |
Michael Johnson | b569047 | 2018-09-05 09:20:39 -0700 | [diff] [blame^] | 5 | executable: /bin/bash |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 6 | cmd: | |
| 7 | set -e |
| 8 | set -x |
Michael Johnson | 28f29e2 | 2018-08-19 13:44:42 -0700 | [diff] [blame] | 9 | if $(egrep --quiet '(vmx|svm)' /proc/cpuinfo) && [[ ! $(hostname) =~ "ovh" ]]; then |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 10 | export DEVSTACK_GATE_LIBVIRT_TYPE=kvm |
| 11 | fi |
| 12 | |