diff options
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 |
