Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

41 řádky
1.1 KiB

  1. ---
  2. - name: install required binary packages
  3. apt:
  4. name: "{{ packages }}"
  5. update_cache: yes
  6. vars:
  7. packages:
  8. - roundcube
  9. - roundcube-plugins
  10. - name: Creating random des_key for Roundcube
  11. shell: pwgen 24
  12. register: roundcube_random_des_key
  13. - name: Deploying Roundcube configuration
  14. template:
  15. src: roundcube-config.inc.php.j2
  16. dest: /etc/roundcube/config.inc.php
  17. owner: root
  18. group: www-data
  19. mode: 0640
  20. - name: Deploying Roundcube managesieve plugin configuration
  21. copy:
  22. src: roundcube-managesieve-config.inc.php
  23. dest: /etc/roundcube/plugins/managesieve/config.inc.php
  24. mode: 0640
  25. - name: Deploying Roundcube password plugin configuration
  26. template:
  27. src: roundcube-password-config.inc.php.j2
  28. dest: /etc/roundcube/plugins/password/config.inc.php
  29. owner: root
  30. group: www-data
  31. mode: 0640
  32. - name: Copy ISPmail logo
  33. copy:
  34. src: ispmail-logo.png
  35. dest: /var/lib/roundcube/
  36. - name: Copy Roundcube database config file
  37. template:
  38. src: roundcube-debian-db.php.j2
  39. dest: /etc/roundcube/debian-db.php
  40. mode: 0640