42 lines
810 B
Plaintext
42 lines
810 B
Plaintext
snippet mainrole "Snippet for the main file of a playbook." b
|
|
---
|
|
# ${1:Description of the role}
|
|
|
|
- name: Installation
|
|
ansible.builtin.import_tasks: install/main.yml
|
|
tags:
|
|
- ${2:basetag}
|
|
- $2-install
|
|
|
|
- name: Configuration
|
|
ansible.builtin.import_tasks: config/main.yml
|
|
tags:
|
|
- $2
|
|
- $2-config
|
|
|
|
- name: Firewall configuration
|
|
ansible.builtin.import_tasks: firewall/main.yml
|
|
tags:
|
|
- $2
|
|
- $2-firewall
|
|
$0
|
|
endsnippet
|
|
|
|
snippet playbook "Creates an empty playbook." b
|
|
---
|
|
- hosts: all
|
|
roles:
|
|
- ${1:${VISUAL:rolename}}$0
|
|
become: yes
|
|
become_user: root
|
|
endsnippet
|
|
|
|
snippet shellpipe "Creates a task with module shell and which supports pipes." b
|
|
- name: ${1:${VISUAL:Title}}
|
|
ansible.builtin.shell: >
|
|
set -o pipefail;
|
|
$0
|
|
args:
|
|
executable: /bin/bash
|
|
endsnippet
|