Bechtoldt's Network Saltstack Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 satır
601B

  1. network:
  2. interfaces:
  3. - name: eth0
  4. proto: dhcp
  5. type: eth
  6. - name: eth1
  7. proto: static
  8. ipaddr: 192.168.2.31
  9. netmask: 255.255.255.0
  10. gateway: 192.168.2.1
  11. - name: eth2
  12. resolver:
  13. domain: domain.local
  14. search:
  15. - domain.local
  16. - another.local
  17. nameservers:
  18. - 192.168.2.1
  19. - 2002::beef
  20. options:
  21. - rotate
  22. - timeout:1
  23. hosts:
  24. - name: example.com
  25. ip: 192.168.2.100
  26. - name: example.org
  27. ip: 192.168.2.150
  28. ensure: present
  29. - name: example.net
  30. ip: 192.168.2.200
  31. ensure: absent