diff options
| author | Joe Carstairs <me@joeac.net> | 2026-09-14 08:13:56 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-09-14 08:13:56 +0100 |
| commit | beb4a9e5ab8ad5ab8637f2154427c3dc88c0e991 (patch) | |
| tree | c10f4d4ad49591fb096c5f8c224200f02f70d809 /roles/http | |
| parent | b56721c23dc239fa0c8446e6b4ccf3616c853a2e (diff) | |
cgit: add python dependencies (for md2html script)
Diffstat (limited to 'roles/http')
| -rw-r--r-- | roles/http/tasks/main.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/http/tasks/main.yml b/roles/http/tasks/main.yml index dc44b95..37e8f3e 100644 --- a/roles/http/tasks/main.yml +++ b/roles/http/tasks/main.yml @@ -52,6 +52,7 @@ state: restarted - name: Checkout joeac.net source code + become: false ansible.builtin.git: repo: git://git.joeac.net/joeac.net.git dest: "{{ src_dir }}/joeac.net" @@ -59,6 +60,7 @@ version: main - name: Build joeac.net website + become: false community.general.make: chdir: "{{ src_dir }}/joeac.net/http" @@ -70,6 +72,7 @@ group: nginx - name: Configure website PHP with config.ini + become: false ansible.builtin.template: src: config.ini dest: "{{ src_dir }}/joeac.net/http/config.ini" @@ -107,6 +110,7 @@ mode: "600" - name: Install daily crontab to update http + become: false ansible.builtin.cron: special_time: daily name: Update http |
