1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fixing some yamllint issues (#42775)

This commit is contained in:
Bas 2019-02-21 18:58:42 +01:00 committed by Alicia Cozine
parent 269cdffcea
commit ffd8f8d844
10 changed files with 6 additions and 12 deletions

View file

@ -1,8 +1,8 @@
- name: {{ role_name }} playbook to deprovision the application
- name: "{{ role_name }} playbook to deprovision the application"
hosts: localhost
gather_facts: false
connection: local
vars:
apb_action: deprovision
roles:
- role: {{ role_name }}
- role: {{ role_name }}

View file

@ -1,8 +1,8 @@
- name: {{ role_name }} playbook to provision the application
- name: "{{ role_name }} playbook to provision the application"
hosts: localhost
gather_facts: false
connection: local
vars:
apb_action: provision
roles:
- role: {{ role_name }}
- role: {{ role_name }}

View file

@ -5,4 +5,3 @@
tasks:
# Add tasks and assertions for testing the service here.

View file

@ -1,3 +1,2 @@
---
# vars file for {{ role_name }}

View file

@ -1,3 +1,2 @@
---
# defaults file for {{ role_name }}

View file

@ -1,3 +1,2 @@
---
# tasks file for {{ role_name }}

View file

@ -5,4 +5,3 @@
tasks:
# Add tasks and assertions for testing the service here.

View file

@ -1,3 +1,2 @@
---
# vars file for {{ role_name }}

View file

@ -58,6 +58,6 @@ galaxy_info:
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.
{%- for dependency in dependencies %}
{% for dependency in dependencies %}
#- {{ dependency }}
{%- endfor %}

View file

@ -2,4 +2,4 @@
- hosts: localhost
remote_user: root
roles:
- {{ role_name }}
- {{ role_name }}