Skip to content

Commit

Permalink
Cleanup code, use cased names.
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-de-bock committed May 12, 2023
1 parent e01ded3 commit 297efc9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The machine needs to be prepared. In CI this is done using [`molecule/default/pr

```yaml
---
- name: prepare
- name: Prepare
hosts: all
become: yes
gather_facts: no
Expand All @@ -34,7 +34,7 @@ The machine needs to be prepared. In CI this is done using [`molecule/default/pr
- role: robertdebock.bootstrap

tasks:
- name: make a fake binary
- name: Make a fake binary
ansible.builtin.file:
path: /bin/my_fake_binary
state: touch
Expand Down
4 changes: 2 additions & 2 deletions molecule/default/prepare.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
- name: prepare
- name: Prepare
hosts: all
become: yes
gather_facts: no
Expand All @@ -8,7 +8,7 @@
- role: robertdebock.bootstrap

tasks:
- name: make a fake binary
- name: Make a fake binary
ansible.builtin.file:
path: /bin/my_fake_binary
state: touch
Expand Down
2 changes: 1 addition & 1 deletion molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
roles:
- role: ansible-role-alternatives
alternatives_list:
- name: my_alternative_fake_binary
- name: My_alternative_fake_binary
link: /bin/my_alternative_fake_binary
path: /bin/my_fake_binary

0 comments on commit 297efc9

Please sign in to comment.