Skip to content
Snippets Groups Projects
Verified Commit 26f289b7 authored by Evangelos Foutras's avatar Evangelos Foutras :smiley_cat:
Browse files

Capitalize the first letter of all task names

ansible-lint 6.5.0 complains about:

  name: All names should start with an
        uppercase letter. (name[casing])
parent 19ee76d7
No related branches found
No related tags found
No related merge requests found
Showing
with 21 additions and 21 deletions
- name: setup Keycloak server
- name: Setup Keycloak server
hosts: accounts.archlinux.org
remote_user: root
roles:
......
- name: basic setup for all hosts
- name: Basic setup for all hosts
hosts: all
remote_user: root
roles:
......
- name: common playbook for archive-mirrors
- name: Common playbook for archive-mirrors
hosts: archive_mirrors
remote_user: root
roles:
......
- name: "prepare postgres ssl hosts list"
hosts: archlinux.org
tasks:
- name: assign ipv4 addresses to fact postgres_hosts4
- name: Assign ipv4 addresses to fact postgres_hosts4
set_fact: postgres_hosts4="{{ [gemini4] + detected_ips }}"
vars:
gemini4: "{{ hostvars['gemini.archlinux.org']['wireguard_address'] }}/32"
detected_ips: "{{ groups['mirrors'] | map('extract', hostvars, ['wireguard_address']) | select() | map('regex_replace', '^(.+)$', '\\1/32') | list }}"
tags: ["postgres", "firewall"]
- name: setup archlinux.org
- name: Setup archlinux.org
hosts: archlinux.org
remote_user: root
roles:
......
- name: setup aur.archlinux.org
- name: Setup aur.archlinux.org
hosts: aur.archlinux.org
remote_user: root
roles:
......
- name: setup bbs.archlinux.org
- name: Setup bbs.archlinux.org
hosts: bbs.archlinux.org
remote_user: root
roles:
......
- name: setup bugs.archlinux.org
- name: Setup bugs.archlinux.org
hosts: bugs.archlinux.org
remote_user: root
roles:
......
- name: setup build.archlinux.org
- name: Setup build.archlinux.org
hosts: build.archlinux.org
remote_user: root
roles:
......
- name: setup public dashboards server
- name: Setup public dashboards server
hosts: dashboards.archlinux.org
remote_user: root
roles:
......
- name: setup debuginfod.archlinux.org
- name: Setup debuginfod.archlinux.org
hosts: debuginfod.archlinux.org
remote_user: root
roles:
......
- name: setup gemini.archlinux.org
- name: Setup gemini.archlinux.org
hosts: gemini.archlinux.org
remote_user: root
vars:
......
- name: setup gitlab-runners
- name: Setup gitlab-runners
hosts: gitlab_runners
remote_user: root
roles:
......
- name: setup gitlab server
- name: Setup gitlab server
hosts: gitlab.archlinux.org
remote_user: root
roles:
......
- name: setup gluebuddy.archlinux.org
- name: Setup gluebuddy.archlinux.org
hosts: gluebuddy.archlinux.org
remote_user: root
roles:
......
- name: setup Hetzner storagebox account
- name: Setup Hetzner storagebox account
hosts: localhost
gather_facts: false
vars_files:
......
- name: setup homedir.archlinux.org
- name: Setup homedir.archlinux.org
hosts: homedir.archlinux.org
remote_user: root
roles:
......
- name: setup mailman server
- name: Setup mailman server
hosts: lists.archlinux.org
remote_user: root
roles:
......
- name: setup mail.archlinux.org
- name: Setup mail.archlinux.org
hosts: mail.archlinux.org
remote_user: root
roles:
......
- name: setup mailman3 server
- name: Setup mailman3 server
hosts: mailman3.archlinux.org
remote_user: root
roles:
......
- name: setup man.archlinux.org
- name: Setup man.archlinux.org
hosts: man.archlinux.org
remote_user: root
roles:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment