Skip to content

Commit

Permalink
Add a sample playbook when creating new collection
Browse files Browse the repository at this point in the history
This sorts a problem where people might not know where to create
new playbooks inside collections.
  • Loading branch information
ssbarnea committed Jan 21, 2025
1 parent 485451b commit a7604b2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: Sample deployment playbook
hosts: '{{ target | default("all") }}'
tasks:
- name: Print a message
ansible.builtin.debug:
msg: "Hello, World!"
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: Sample deployment playbook
hosts: '{{ target | default("all") }}'
tasks:
- name: Print a message
ansible.builtin.debug:
msg: "Hello, World!"

0 comments on commit a7604b2

Please sign in to comment.