25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.2 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. - php-horde-imp
  11. - php-horde-ingo
  12. - php-horde-kronolith
  13. - php-horde-turba
  14. # - name: Creating random des_key for Roundcube
  15. # shell: pwgen 24
  16. # register: roundcube_random_des_key
  17. # - name: Deploying Roundcube configuration
  18. # template:
  19. # src: roundcube-config.inc.php.j2
  20. # dest: /etc/roundcube/config.inc.php
  21. # owner: root
  22. # group: www-data
  23. # mode: 0640
  24. # - name: Deploying Roundcube managesieve plugin configuration
  25. # copy:
  26. # src: roundcube-managesieve-config.inc.php
  27. # dest: /etc/roundcube/plugins/managesieve/config.inc.php
  28. # mode: 0640
  29. # - name: Deploying Roundcube password plugin configuration
  30. # template:
  31. # src: roundcube-password-config.inc.php.j2
  32. # dest: /etc/roundcube/plugins/password/config.inc.php
  33. # owner: root
  34. # group: www-data
  35. # mode: 0640
  36. # - name: Copy ISPmail logo
  37. # copy:
  38. # src: ispmail-logo.png
  39. # dest: /var/lib/roundcube/
  40. # - name: Copy Roundcube database config file
  41. # template:
  42. # src: roundcube-debian-db.php.j2
  43. # dest: /etc/roundcube/debian-db.php
  44. # mode: 0640