Skip to content

Commit

Permalink
removed non-essential -x permissions, based on reports only -r -w are…
Browse files Browse the repository at this point in the history
… required
  • Loading branch information
andreygubarev committed Feb 21, 2024
1 parent 464930e commit b1513ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molecule_qemu/playbooks/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@

- name: Check kvm support
when: ansible_system == 'Linux'
ansible.builtin.shell: (egrep -m1 -w '^flags[[:blank:]]*:' /proc/cpuinfo | egrep -wo '(vmx|svm)') && test -e /dev/kvm && test -r /dev/kvm && test -w /dev/kvm
ansible.builtin.shell: (egrep -m1 -w '^flags[[:blank:]]*:' /proc/cpuinfo | egrep -wo '(vmx|svm)') && test -r /dev/kvm && test -w /dev/kvm
register: kvm_support
changed_when: false
ignore_errors: true
Expand Down

0 comments on commit b1513ca

Please sign in to comment.