Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
336 B

  1. ---
  2. - name: install dokuwiki and associated packages
  3. apt:
  4. name: "{{ item }}"
  5. state: present
  6. update_cache: yes
  7. cache_valid_time: 3600
  8. with_items:
  9. - dokuwiki
  10. - name: Write dokuwiki configuration to local.php
  11. copy:
  12. src: dokuwiki.php
  13. dest: /etc/dokuwiki/local.php
  14. notify:
  15. - restart nginx