選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

22 行
1.1 KiB

  1. ---
  2. - name: adding Jessie backports repository (for Roundcube)
  3. apt_repository: repo='deb http://http.debian.net/debian jessie-backports main' state=present
  4. - name: install required binary packages
  5. apt: name={{item}} state=installed
  6. with_items:
  7. - roundcube
  8. - roundcube-plugins
  9. - name: Creating random des_key for Roundcube
  10. shell: pwgen 24
  11. register: roundcube_random_des_key
  12. - name: Deploying Roundcube configuration
  13. template: src=roundcube-config.inc.php.j2 dest=/etc/roundcube/config.inc.php owner=root group=www-data mode=640
  14. - name: Deploying Roundcube managesieve plugin configuration
  15. copy: src=roundcube-managesieve-config.inc.php dest=/etc/roundcube/plugins/managesieve/config.inc.php mode=0640
  16. - name: Deploying Roundcube password plugin configuration
  17. template: src=roundcube-password-config.inc.php.j2 dest=/etc/roundcube/plugins/password/config.inc.php owner=root group=www-data mode=640
  18. - name: Copy ISPmail logo
  19. copy: src=ispmail-logo.png dest=/var/lib/roundcube/
  20. - name: Copy Roundcube database config file
  21. template: src=roundcube-debian-db.php.j2 dest=/etc/roundcube/debian-db.php mode=0640