playbook (257B)
1 # -*- mode: snippet -*- 2 # name: New playbook template 3 # expand-env: ((yas-indent-line 'fixed)) 4 # key: host 5 # condition: t 6 # -- 7 ${1:---} 8 - hosts: ${2:hostname} 9 remote_user: ${3:ansible} 10 become: yes 11 strategy: linear 12 ${4:vars:} 13 ${5:roles:} 14 tasks:$0