summaryrefslogtreecommitdiffstats
path: root/wiki/tasks/main.yml
diff options
context:
space:
mode:
authorOpal <847966@proton.me>2022-10-15 15:27:41 -0700
committerOpal <847966@proton.me>2022-10-15 15:27:41 -0700
commita287e741842f67d0a04c48276221d85f16079d55 (patch)
tree2db596b4ba6709fe10168942bcd0fc5ed2850d02 /wiki/tasks/main.yml
parentd86946ec21f2175d3a5aad58c1ae236291c74b7a (diff)
downloademacsconf-ansible-a287e741842f67d0a04c48276221d85f16079d55.tar.xz
emacsconf-ansible-a287e741842f67d0a04c48276221d85f16079d55.zip
merging code between old emacsconf repo, to sachac's emacsconf repo
Diffstat (limited to 'wiki/tasks/main.yml')
-rw-r--r--wiki/tasks/main.yml57
1 files changed, 0 insertions, 57 deletions
diff --git a/wiki/tasks/main.yml b/wiki/tasks/main.yml
deleted file mode 100644
index 0fa2336..0000000
--- a/wiki/tasks/main.yml
+++ /dev/null
@@ -1,57 +0,0 @@
----
-- name: Set up packages
- ansible.builtin.apt:
- update_cache: true
- pkg:
- - ikiwiki
- - git
- - openssh-server
- - libimage-magick-perl
- - libtext-csv-perl
- - libxml-writer-perl
- - imagemagick
- - nginx
- - wget
- state: present
-- name: Create ikiwiki group
- group:
- name: ikiwiki
- state: present
-- name: Create ikiwiki user
- user:
- name: ikiwiki
- group: ikiwiki
- state: present
-- debug:
- var: docker
-- name: Set up or update repositories
- ansible.builtin.git:
- repo: git://git.emacsconf.org/emacsconf-wiki
- dest: "{{ ikiwiki_src_dir }}"
- when: not docker|d(false)
-- name: Template the config
- ansible.builtin.template:
- src: emacsconf.setup
- dest: "{{ ikiwiki_path }}/emacsconf.setup"
- owner: ikiwiki
-- name: Copy Ikiwiki plugins
- template:
- src: "{{ item }}"
- dest: "{{ ikiwiki_plugin_path }}"
- loop:
- - copyright.pm
- - htmlscrubber.pm
- - license.pm
-- include: docker.yml
- when: docker is true
-- name: Chown all the files to ikiwiki
- file:
- dest: "{{ ikiwiki_path }}"
- owner: ikiwiki
- group: ikiwiki
- recurse: true
-- name: Regenerate all the files
- shell: ikiwiki --setup "{{ ikiwiki_path }}/emacsconf.setup" --rebuild --wrappers
- register: output
-- debug:
- var: output