Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

roundcube.yml 491B

12345678910111213
  1. - name: Install Roundcube
  2. apt: pkg=roundcube state=latest
  3. - name: Configure the Apache HTTP server for roundcube
  4. template: src=etc_apache2_sites-available_roundcube.j2 dest=/etc/apache2/sites-available/roundcube group=www-data owner=www-data force=yes
  5. - name: Configure roundcube
  6. copy: src=etc_roundcube_main.inc.php dest=/etc/roundcube/main.inc.php group=www-data owner=root mode=640 force=yes
  7. - name: Enable roundcube site
  8. command: a2ensite roundcube
  9. notify: restart apache