Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prefer true/false to yes/no in YAML files #278

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/aws.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- hosts: all
name: AWS-specific roles
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
- name: Install Amazon EFS utilities
Expand Down
2 changes: 1 addition & 1 deletion src/base.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- hosts: all
name: Setup base image
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
- name: Install and configure automated security updates
Expand Down
2 changes: 1 addition & 1 deletion src/example.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- hosts: all
name: Project-specific roles
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
# The cisagov/ansible-role-example Ansible role is just a no-op,
Expand Down
2 changes: 1 addition & 1 deletion src/python.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- hosts: all
name: Install pip3/python3 and remove pip2/python2
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
# If pip were to be installed first, then the OS _could_ pull
Expand Down
2 changes: 1 addition & 1 deletion src/upgrade.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- hosts: all
name: Upgrade base image
become: yes
become: true
become_method: ansible.builtin.sudo
tasks:
- name: Upgrade all packages
Expand Down
Loading