ansiblelint fixes - fqcn[action-core] - shell to ansible.builtin.shell
Replaces references to shell: with ansible.builtin.shell Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
parent
25391e95b7
commit
3c41882bb0
95 changed files with 179 additions and 179 deletions
|
@ -25,7 +25,7 @@
|
|||
include_role: name=basessh
|
||||
|
||||
# - name: Edit hostname to be instance name - prefix hostbase var if it exists
|
||||
# shell: hostname {{ hostbase }}`curl -s http://169.254.169.254/latest/meta-data/instance-id`
|
||||
# ansible.builtin.shell: hostname {{ hostbase }}`curl -s http://169.254.169.254/latest/meta-data/instance-id`
|
||||
# tags:
|
||||
# - config
|
||||
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
- swap
|
||||
|
||||
- name: Disable zram0
|
||||
shell: swapoff /dev/zram0
|
||||
ansible.builtin.shell: swapoff /dev/zram0
|
||||
tags:
|
||||
- swap
|
||||
- swap.file.swapoffzram
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
when: inventory_hostname not in result.list_vms
|
||||
|
||||
- name: Run the virt-install
|
||||
shell: "{{ virt_install_command }}"
|
||||
ansible.builtin.shell: "{{ virt_install_command }}"
|
||||
delegate_to: "{{ vmhost }}"
|
||||
when: inventory_hostname not in result.list_vms
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue