Compare commits

..

No commits in common. "691a934297d60e70768e69f42b53fdb348e44442" and "759df2f5937062454a5b8d6b396d740eed1fa208" have entirely different histories.

4 changed files with 7 additions and 19 deletions

View File

@ -11,7 +11,5 @@ api_endpoint: "https://netbox.desu.ltd"
group_by: group_by:
- device_roles - device_roles
- tags - tags
- device_types
- manufacturers
device_query_filters: device_query_filters:
- has_primary_ip: "true" - has_primary_ip: "true"

View File

@ -25,6 +25,8 @@
tags: [ desktop, udev ] tags: [ desktop, udev ]
- role: pulseaudio - role: pulseaudio
tags: [ desktop, pulse, pulseaudio ] tags: [ desktop, pulse, pulseaudio ]
- role: zerotier
tags: [ desktop, zerotier ]
- hosts: lap-s76-lemp9-0.desu.ltd - hosts: lap-s76-lemp9-0.desu.ltd
roles: roles:
- role: desktop - role: desktop

View File

@ -2,9 +2,12 @@
# vim:ft=ansible: # vim:ft=ansible:
--- ---
# General configuration # General configuration
- hosts: manufacturers_raspi - hosts: tags_pis
roles:
- role: zerotier
tags: [ pis, zerotier ]
tasks: tasks:
- name: install raspi packages - name: install basic packages
apt: apt:
name: name:
- libraspberrypi-bin - libraspberrypi-bin

View File

@ -1,15 +0,0 @@
#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
---
- hosts: tags_zerotier
roles:
- role: zerotier
tags: [ zerotier ]
- hosts: all
tasks:
- name: disable zerotier when not tagged
systemd: name={{ item }} state=stopped enabled=no
with_items:
- zerotier-one.service
when: "'tags_zerotier' not in group_names and item in services"
tags: [ zerotier ]