12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- base:
- # Base config for all minions
- '*':
- - ffinfo
- - apt
- - bash
- - cert
- - console-tools
- - kernel
- - locales
- - mosh
- - network
- - ntp
- - postfix
- - screen
- - snmpd
- - ssh
- - sysctl
- - vim
- - unattended-upgrades
- # - tinc
- #
- # Roles
- #
- # Roles no relevant here are
- # - batman_gw (require role "batman")
- # - bbr (require role "router")
- # Router
- nodes:{{ grains['id'] }}:roles:router:
- - match: pillar
- - bird
- # Batman node?
- nodes:{{ grains['id'] }}:roles:batman:
- - match: pillar
- - batman
- # BRAS / Fastd
- nodes:{{ grains['id'] }}:roles:fastd:
- - match: pillar
- - fastd
- # Hardware nodes
- virtual:physical:
- - match: grain
- - hardware
- # KVM hosts
- nodes:{{ grains['id'] }}:roles:kvm:
- - match: pillar
- - kvm
- # Authoritive DNS server
- nodes:{{ grains['id'] }}:roles:dns-auth:
- - match: pillar
- - dns-server.auth
|