🚨 host: tau: Fix fqcn linter warnings
fqcn[action]: Use FQCN for module actions, such `community.docker.docker_network`. host-tau.yml:28 Action `docker_network` is not FQCN. fqcn[action-core]: Use FQCN for builtin module actions (include_role). host-tau.yml:37 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead. fqcn[action-core]: Use FQCN for builtin module actions (include_role). host-tau.yml:54 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. host-tau.yml:61 Action `docker_container` is not FQCN. fqcn[action-core]: Use FQCN for builtin module actions (include_role). host-tau.yml:78 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead. fqcn[action-core]: Use FQCN for builtin module actions (file). host-tau.yml:94 Use `ansible.builtin.file` or `ansible.legacy.file` instead. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. host-tau.yml:101 Action `docker_container` is not FQCN. fqcn[action-core]: Use FQCN for builtin module actions (include_role). host-tau.yml:120 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. host-tau.yml:149 Action `docker_container` is not FQCN. fqcn[action-core]: Use FQCN for builtin module actions (include_role). host-tau.yml:168 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. host-tau.yml:178 Action `docker_container` is not FQCN. fqcn[action-core]: Use FQCN for builtin module actions (include_role). host-tau.yml:193 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead.
This commit is contained in:
parent
5d1ca7ef9f
commit
95706d0ad4
1 changed files with 12 additions and 12 deletions
24
host-tau.yml
24
host-tau.yml
|
@ -26,7 +26,7 @@
|
|||
|
||||
tasks:
|
||||
- name: Setup docker network
|
||||
docker_network:
|
||||
community.docker.docker_network:
|
||||
name: dockernet
|
||||
driver: bridge
|
||||
ipam_config:
|
||||
|
@ -35,7 +35,7 @@
|
|||
state: present
|
||||
|
||||
- name: Setup Dehydrated
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: 24367dfa.dehydrated
|
||||
vars:
|
||||
dehydrated_contact_email: "{{ server_admin }}"
|
||||
|
@ -52,14 +52,14 @@
|
|||
deploy_challenge_hook: "/bin/systemctl restart apache2"
|
||||
|
||||
- name: Setup proxy site testredmine.netz39.de
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: setup_http_site_proxy
|
||||
vars:
|
||||
site_name: testredmine.netz39.de
|
||||
proxy_port: 9004
|
||||
|
||||
- name: Setup phpmyadmin
|
||||
docker_container:
|
||||
community.docker.docker_container:
|
||||
name: phpmyadmin
|
||||
state: started
|
||||
image: phpmyadmin:5.2
|
||||
|
@ -76,7 +76,7 @@
|
|||
- 9001:80
|
||||
|
||||
- name: Setup proxy site mysql.adm.netz39.de
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: setup_http_site_proxy
|
||||
vars:
|
||||
site_name: mysql.adm.netz39.de
|
||||
|
@ -93,13 +93,13 @@
|
|||
when: not docker_dir.stat.exists
|
||||
- name: Ensure the Docker Registry data directory exists
|
||||
# This may not be part of the backup
|
||||
file:
|
||||
ansible.builtin.file:
|
||||
path: "{{ data_dir }}/registry/data"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
|
||||
- name: Setup Docker Registry Container
|
||||
docker_container:
|
||||
community.docker.docker_container:
|
||||
name: registry
|
||||
image: registry:2
|
||||
pull: true
|
||||
|
@ -118,7 +118,7 @@
|
|||
- "{{ data_dir }}/registry/auth:/auth:rw"
|
||||
|
||||
- name: Setup proxy site for the Docker Registry
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: setup_http_site_proxy
|
||||
vars:
|
||||
site_name: "{{ docker_registry_domain }}"
|
||||
|
@ -147,7 +147,7 @@
|
|||
- dokuwiki
|
||||
|
||||
- name: Setup Dokuwiki Container
|
||||
docker_container:
|
||||
community.docker.docker_container:
|
||||
name: dokuwiki
|
||||
image: "{{ dokuwiki_image }}"
|
||||
pull: true
|
||||
|
@ -166,7 +166,7 @@
|
|||
- dokuwiki
|
||||
|
||||
- name: Setup proxy site for Dokuwiki
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: setup_http_site_proxy
|
||||
vars:
|
||||
site_name: "{{ dokuwiki_domain }}"
|
||||
|
@ -176,7 +176,7 @@
|
|||
|
||||
|
||||
- name: Setup container for secondary FFMD DNS
|
||||
docker_container:
|
||||
community.docker.docker_container:
|
||||
name: bind9-md-freifunk-net
|
||||
image: ffmd/bind9-md-freifunk-net:v2022122301
|
||||
pull: true
|
||||
|
@ -191,7 +191,7 @@
|
|||
- ffmd-dns
|
||||
|
||||
- name: Setup forwarding for Discord invite
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: setup_http_site_forward
|
||||
vars:
|
||||
site_name: "{{ discord_invite_domain }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue