Apply prettier formatting

This commit is contained in:
Marty Oehme 2024-06-24 20:36:55 +02:00
parent 6b4c4ccde4
commit c498b3ced8
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
76 changed files with 123 additions and 202 deletions

View file

@ -39,4 +39,3 @@ stack_image: "wallabag/wallabag"
```
The docker hub image to be use in provisioning.

View file

@ -1,5 +1,4 @@
---
wallabag_version: latest
wallabag_upstream_file_dir: "{{ docker_stack_files_dir }}/{{ stack_name }}"

View file

@ -3,7 +3,7 @@
ansible.builtin.file:
path: "{{ wallabag_upstream_file_dir }}"
state: directory
mode: '0755'
mode: "0755"
become: true
listen: "update wallabag upstream"
@ -40,7 +40,7 @@
community.docker.docker_container_exec:
container: "{{ caddy_container_id }}"
command: >
curl -X POST -H "Content-Type: application/json" -d @{{ wallabag_upstream_file_dir }}/upstream.json localhost:2019/config/apps/http/servers/{{ (wallabag_use_https == True) | ternary(caddy_https_server_name, caddy_http_server_name) }}/routes/0/
curl -X POST -H "Content-Type: application/json" -d @{{ wallabag_upstream_file_dir }}/upstream.json localhost:2019/config/apps/http/servers/{{ (wallabag_use_https == True) | ternary(caddy_https_server_name, caddy_http_server_name) }}/routes/0/
become: true
listen: "update wallabag upstream"

View file

@ -1,5 +1,4 @@
---
galaxy_info:
author: Marty Oehme
description: Installs wallabag as a docker stack service
@ -7,7 +6,6 @@ galaxy_info:
min_ansible_version: "2.9"
galaxy_tags: []
dependencies:
- docker-swarm
- caddy_id

View file

@ -1,5 +1,4 @@
---
stack_name: wallabag
stack_image: "wallabag/wallabag"