diff --git a/roles/cleanup/tasks/main.yml b/roles/cleanup/tasks/main.yml index af6e658..5d143ff 100644 --- a/roles/cleanup/tasks/main.yml +++ b/roles/cleanup/tasks/main.yml @@ -24,7 +24,7 @@ hostname: "{{ hypervisor_url }}" username: "{{ hypervisor_username }}" password: "{{ hypervisor_password }}" - validate_certs: no + validate_certs: false datacenter: "{{ hypervisor_cluster }}" name: "{{ hostname }}" cdrom: @@ -72,4 +72,4 @@ - name: Wait for VM to boot up delegate_to: "{{ inventory_hostname }}" wait_for_connection: - timeout: 300 \ No newline at end of file + timeout: 300 diff --git a/roles/configuration/tasks/main.yml b/roles/configuration/tasks/main.yml index d4c066b..a6b0a4b 100644 --- a/roles/configuration/tasks/main.yml +++ b/roles/configuration/tasks/main.yml @@ -155,7 +155,7 @@ owner: 1000 group: 1000 mode: "0600" - create: yes + create: true - name: Give sudo access to wheel group copy: diff --git a/roles/partitioning/tasks/btrfs.yml b/roles/partitioning/tasks/btrfs.yml index d5b51c8..b85b736 100644 --- a/roles/partitioning/tasks/btrfs.yml +++ b/roles/partitioning/tasks/btrfs.yml @@ -5,7 +5,7 @@ filesystem: dev: '{{ install_drive }}{{ main_partition_suffix }}' fstype: btrfs - force: yes + force: true - name: Prepare BTRFS Subvolume mount: diff --git a/roles/partitioning/tasks/ext4.yml b/roles/partitioning/tasks/ext4.yml index 0e29b19..5eb218a 100644 --- a/roles/partitioning/tasks/ext4.yml +++ b/roles/partitioning/tasks/ext4.yml @@ -4,7 +4,7 @@ filesystem: dev: '/dev/sys/{{ item.lv }}' fstype: ext4 - force: yes + force: true loop: - { lv: root } - { lv: home } @@ -20,4 +20,4 @@ - { lv: home } - { lv: var } - { lv: var_log } - - { lv: var_log_audit } \ No newline at end of file + - { lv: var_log_audit } diff --git a/roles/partitioning/tasks/main.yml b/roles/partitioning/tasks/main.yml index 274b487..ed70765 100644 --- a/roles/partitioning/tasks/main.yml +++ b/roles/partitioning/tasks/main.yml @@ -54,7 +54,7 @@ dev: '{{ install_drive }}{{ boot_partition_suffix }}' fstype: vfat opts: -F32 - force: yes + force: true - name: Create filesystem include_tasks: "{{ filesystem }}.yml" diff --git a/roles/partitioning/tasks/xfs.yml b/roles/partitioning/tasks/xfs.yml index bdd5b1f..3582a10 100644 --- a/roles/partitioning/tasks/xfs.yml +++ b/roles/partitioning/tasks/xfs.yml @@ -4,10 +4,10 @@ filesystem: dev: '/dev/sys/{{ item.lv }}' fstype: xfs - force: yes + force: true loop: - { lv: root } - { lv: home } - { lv: var } - { lv: var_log } - - { lv: var_log_audit } \ No newline at end of file + - { lv: var_log_audit } diff --git a/roles/virtualization/tasks/vmware.yml b/roles/virtualization/tasks/vmware.yml index eb62372..496b233 100644 --- a/roles/virtualization/tasks/vmware.yml +++ b/roles/virtualization/tasks/vmware.yml @@ -4,7 +4,7 @@ hostname: "{{ hypervisor_url }}" username: "{{ hypervisor_username }}" password: "{{ hypervisor_password }}" - validate_certs: no + validate_certs: false datacenter: "{{ hypervisor_cluster }}" cluster: "{{ hypervisor_node }}" folder: "{{ vm_path }}" @@ -30,4 +30,4 @@ networks: - vlan: "{{ vlan_name }}" type: dhcp - ignore_errors: yes \ No newline at end of file + ignore_errors: true