15 lines
286 B
YAML
Executable File
15 lines
286 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
# vim:ft=ansible:
|
|
---
|
|
# General configuration
|
|
- hosts: tags_pis
|
|
roles:
|
|
- role: zerotier
|
|
tags: [ pis, zerotier ]
|
|
tasks:
|
|
- name: install basic packages
|
|
apt:
|
|
name:
|
|
- libraspberrypi-bin
|
|
tags: [ pis, packages ]
|