Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
12345678910111213 |
- - name: Install Roundcube
- apt: pkg=roundcube state=latest
-
- - name: Configure the Apache HTTP server for roundcube
- template: src=etc_apache2_sites-available_roundcube.j2 dest=/etc/apache2/sites-available/roundcube group=www-data owner=www-data force=yes
-
- - name: Configure roundcube
- copy: src=etc_roundcube_main.inc.php dest=/etc/roundcube/main.inc.php group=www-data owner=root mode=640 force=yes
-
- - name: Enable roundcube site
- command: a2ensite roundcube creates=/etc/apache2/sites-enabled/roundcube
- notify: restart apache
|