[FIX] caddy: install on aarch64 as well

This commit is contained in:
Jannik Beyerstedt 2020-04-17 12:14:25 +02:00
parent 7f391e9fc8
commit 4ecd30ba5f
1 changed files with 8 additions and 8 deletions

View File

@ -1,11 +1,6 @@
--- ---
# Server/Caddyserver-Install: Install/Update Caddy Webserver (with some modules) # Server/Caddyserver-Install: Install/Update Caddy Webserver (with some modules)
# Detect some more host facts
- name: caddyserver - Detect debian distributor ID
shell: lsb_release -is
register: lsb_id
- name: caddyserver - Create cache directory - name: caddyserver - Create cache directory
file: file:
path: "{{ caddy_cachedir }}" path: "{{ caddy_cachedir }}"
@ -29,12 +24,17 @@
get_url: get_url:
url: "https://caddyserver.com/download/linux/amd64?plugins=http.ratelimit&license=personal" url: "https://caddyserver.com/download/linux/amd64?plugins=http.ratelimit&license=personal"
dest: "{{ caddy_cachedir }}/tmp/caddy.tar.gz" dest: "{{ caddy_cachedir }}/tmp/caddy.tar.gz"
when: lsb_id.stdout != "Raspbian" when: ansible_architecture == "x86_64"
- name: caddyserver - Download caddy webserver (raspberry pi) - name: caddyserver - Download caddy webserver (armv7/ raspberry pi)
get_url: get_url:
url: "https://caddyserver.com/download/linux/arm7?plugins=http.ratelimit&license=personal" url: "https://caddyserver.com/download/linux/arm7?plugins=http.ratelimit&license=personal"
dest: "{{ caddy_cachedir }}/tmp/caddy.tar.gz" dest: "{{ caddy_cachedir }}/tmp/caddy.tar.gz"
when: lsb_id.stdout == "Raspbian" when: ansible_architecture == "armv7l"
- name: caddyserver - Download caddy webserver (arm64)
get_url:
url: "https://caddyserver.com/download/linux/arm64?plugins=http.ratelimit&license=personal"
dest: "{{ caddy_cachedir }}/tmp/caddy.tar.gz"
when: ansible_architecture == "aarch64"
- name: caddyserver - Stop caddy - name: caddyserver - Stop caddy
become: yes become: yes