main.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. # list any programs (full command) that can be used to validate configuration,
  3. # in this variable
  4. test_programs: []
  5. # the name of the service that needs to be manipulated by the tasks and handlers
  6. # TODO: maybe make service a list
  7. service: None
  8. # the firewalld service to open in the public zone
  9. # TODO: maybe make fwsvc a list
  10. fwsvc: None
  11. # the list of packages that need to be installed on the target machine
  12. packages: []
  13. # any configuration files that will be processed as templates and published to
  14. # the remote machine; each element of the variable must look like this:
  15. # - src: the path to the template file, relative to playbook or role directory
  16. # dest: destination path (absolute) on the target system
  17. # owner: file owner, when deployed on target
  18. # group: group the file should belong to
  19. # mode: permissions on the file (octal!)
  20. configs: []
  21. # any configuration files that will be copied without modification; each
  22. # element of the variable must look like this:
  23. # - src: the path to the template file, relative to playbook or role directory
  24. # dest: destination path (absolute) on the target system
  25. # owner: file owner, when deployed on target
  26. # group: group the file should belong to
  27. # mode: permissions on the file (octal!)
  28. staticfiles: []
  29. ...