Skip to content

Commit

Permalink
Prefer true to yes in YAML files
Browse files Browse the repository at this point in the history
  • Loading branch information
jsf9k committed Oct 30, 2023
1 parent c84251f commit ecf4162
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/cloud_init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# Ensure that cloud-config is enabled and enable the others while we're at it.
- hosts: all
name: Enable all cloud-init services
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
- name: Enable all cloud-init services
ansible.builtin.service:
name: "{{ item }}"
enabled: yes
enabled: true
loop:
- cloud-config
- cloud-final
Expand Down
4 changes: 2 additions & 2 deletions src/egress_assess.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- hosts: all
name: Install Auto-Egress-Assess tool
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
- name: Install tarrell13/Auto-Egress-Assess
Expand All @@ -11,6 +11,6 @@
assessment_tool_archive_src: https://github.com/tarrell13/Auto-Egress-Assess/tarball/main
assessment_tool_install_dir: /tools/Auto-Egress-Assess
assessment_tool_pip_requirements_file: requirements.txt
assessment_tool_powershell: yes
assessment_tool_powershell: true
assessment_tool_unarchive_extra_opts:
- --strip-components=1
4 changes: 2 additions & 2 deletions src/vnc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- hosts: all
name: Install VNC and configure VNC user
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
- name: Install VNC
Expand Down Expand Up @@ -36,7 +36,7 @@
mode: 0444
- name: Add VNC user to wheel group
ansible.builtin.user:
append: yes
append: true
groups:
- wheel
name: "{{ vnc_server_username }}"
Expand Down
2 changes: 1 addition & 1 deletion src/xfce.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- hosts: all
name: Install Xfce
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
- name: Install Xfce for the COOL
Expand Down

0 comments on commit ecf4162

Please sign in to comment.