Playbooks to a new Lilik
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.

17 lines
302 B

  1. ---
  2. - hosts: biff
  3. roles:
  4. - role: lxc_guest
  5. vm_name: logger
  6. - hosts: logger
  7. - tasks:
  8. - name: Install rsyslog
  9. apt:
  10. name: rsyslog
  11. update_cache: yes
  12. - name: Enable rsyslog daemon
  13. service:
  14. name: rsyslog
  15. enable: yes
  16. state: started