Optimized tests für run once

This commit is contained in:
Kevin Veen-Birkenbach 2025-08-12 02:38:37 +02:00
parent 82aaf7ad74
commit 1595a7c4a6
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
148 changed files with 1803 additions and 1147 deletions

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Installs caffeine-ng and configures it to autostart for preventing screen sleep on GNOME." description: "Installs caffeine-ng and configures it to autostart for preventing screen sleep on GNOME."
@ -13,5 +12,3 @@ galaxy_info:
- caffeine - caffeine
- autostart - autostart
- archlinux - archlinux
dependencies:
- dev-yay

View File

@ -1,4 +1,11 @@
--- - name: Load former meta dependencies once
block:
- name: Include moved dependency 'dev-yay'
include_role:
name: dev-yay
- set_fact:
run_once_desk_gnome_caffeine: true
when: run_once_desk_gnome_caffeine is not defined
- name: Install caffeine - name: Install caffeine
kewlfft.aur.aur: kewlfft.aur.aur:
use: yay use: yay

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birchenbach" author: "Kevin Veen-Birchenbach"
description: "Installs the qBittorrent torrent client via AUR on Arch Linux." description: "Installs the qBittorrent torrent client via AUR on Arch Linux."
@ -18,6 +17,3 @@ galaxy_info:
platforms: platforms:
- name: Archlinux - name: Archlinux
versions: [all] versions: [all]
dependencies:
- dev-yay

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'dev-yay'
include_role:
name: dev-yay
- set_fact:
run_once_desk_qbittorrent: true
when: run_once_desk_qbittorrent is not defined
- name: install torrent software - name: install torrent software
kewlfft.aur.aur: kewlfft.aur.aur:
use: yay use: yay

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Installs the Spotify client." description: "Installs the Spotify client."
@ -23,5 +22,3 @@ galaxy_info:
repository: https://github.com/kevinveenbirkenbach/infinito-nexus repository: https://github.com/kevinveenbirkenbach/infinito-nexus
issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues
documentation: "https://docs.infinito.nexus/" documentation: "https://docs.infinito.nexus/"
dependencies:
- dev-yay

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'dev-yay'
include_role:
name: dev-yay
- set_fact:
run_once_desk_spotify: true
when: run_once_desk_spotify is not defined
- name: install spotify - name: install spotify
kewlfft.aur.aur: kewlfft.aur.aur:
use: yay use: yay

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Persistent SSH agent setup for GNOME Wayland sessions with SSH configuration pulled from Git." description: "Persistent SSH agent setup for GNOME Wayland sessions with SSH configuration pulled from Git."
@ -27,4 +26,3 @@ galaxy_info:
dependencies: dependencies:
- desk-git - desk-git
- dev-shell

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'dev-shell'
include_role:
name: dev-shell
- set_fact:
run_once_desk_ssh: true
when: run_once_desk_ssh is not defined
- name: pull ssh repository from {{desk_ssh_repository}} - name: pull ssh repository from {{desk_ssh_repository}}
git: git:
repo: "{{desk_ssh_repository}}" repo: "{{desk_ssh_repository}}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birchenbach" author: "Kevin Veen-Birchenbach"
description: "Installs the Zoom video conferencing client via AUR on Arch Linux." description: "Installs the Zoom video conferencing client via AUR on Arch Linux."
@ -19,6 +18,3 @@ galaxy_info:
platforms: platforms:
- name: Archlinux - name: Archlinux
versions: [all] versions: [all]
dependencies:
- dev-yay

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'dev-yay'
include_role:
name: dev-yay
- set_fact:
run_once_desk_zoom: true
when: run_once_desk_zoom is not defined
- name: install video conference software - name: install video conference software
kewlfft.aur.aur: kewlfft.aur.aur:
use: yay use: yay

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Installs the python-pip package to provide the Python package manager, ensuring that Python packages can be installed reliably on the target system." description: "Installs the python-pip package to provide the Python package manager, ensuring that Python packages can be installed reliably on the target system."
@ -22,5 +21,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- dev-gcc

View File

@ -1,4 +1,11 @@
--- - name: Load former meta dependencies once
block:
- name: Include moved dependency 'dev-gcc'
include_role:
name: dev-gcc
- set_fact:
run_once_dev_python_pip: true
when: run_once_dev_python_pip is not defined
- name: python pip install - name: python pip install
community.general.pacman: community.general.pacman:
name: python-pip name: python-pip

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Installs the AUR helper yay and configures an aur_builder user with appropriate sudo privileges to facilitate AUR package management on Arch Linux systems." description: "Installs the AUR helper yay and configures an aur_builder user with appropriate sudo privileges to facilitate AUR package management on Arch Linux systems."
@ -23,7 +22,3 @@ galaxy_info:
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
logo: logo:
class: "fas fa-archive" class: "fas fa-archive"
dependencies:
- dev-fakeroot
- dev-git
- dev-base-devel

View File

@ -1,3 +1,15 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- dev-fakeroot
- dev-git
- dev-base-devel
- set_fact:
run_once_dev_yay: true
when: run_once_dev_yay is not defined
- name: install yay - name: install yay
community.general.pacman: community.general.pacman:
name: name:

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Manages Docker Compose project structure and execution logic on Arch Linux." description: "Manages Docker Compose project structure and execution logic on Arch Linux."
@ -24,5 +23,3 @@ galaxy_info:
repository: https://github.com/kevinveenbirkenbach/infinito-nexus repository: https://github.com/kevinveenbirkenbach/infinito-nexus
issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues
documentation: "https://docs.infinito.nexus/" documentation: "https://docs.infinito.nexus/"
dependencies:
- docker-container # Necessary for template use

View File

@ -1,5 +1,11 @@
# run_once_docker_compose: deactivate - name: Load former meta dependencies once
block:
- name: Include moved dependency 'docker-container'
include_role:
name: docker-container
- set_fact:
run_once_docker_compose: true
when: run_once_docker_compose is not defined
- name: "Load variables from {{ docker_compose_variable_file }} for whole play" - name: "Load variables from {{ docker_compose_variable_file }} for whole play"
include_vars: "{{ docker_compose_variable_file }}" include_vars: "{{ docker_compose_variable_file }}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birchenbach" author: "Kevin Veen-Birchenbach"
description: "Provides shared Jinja2 snippets for Docker Compose service definitions (base, networks, healthchecks, depends_on)." description: "Provides shared Jinja2 snippets for Docker Compose service definitions (base, networks, healthchecks, depends_on)."
@ -19,5 +18,3 @@ galaxy_info:
platforms: platforms:
- name: Any - name: Any
versions: [all] versions: [all]
dependencies:
- docker-core

View File

@ -0,0 +1,8 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'docker-core'
include_role:
name: docker-core
- set_fact:
run_once_docker_container: true
when: run_once_docker_container is not defined

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birchenbach" author: "Kevin Veen-Birchenbach"
description: "Installs Epson multifunction printer drivers and scanning utilities (escpr, imagescan) via Pacman and AUR on Arch Linux." description: "Installs Epson multifunction printer drivers and scanning utilities (escpr, imagescan) via Pacman and AUR on Arch Linux."
@ -19,6 +18,3 @@ galaxy_info:
platforms: platforms:
- name: Archlinux - name: Archlinux
versions: [all] versions: [all]
dependencies:
- dev-yay

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'dev-yay'
include_role:
name: dev-yay
- set_fact:
run_once_drv_epson_multiprinter: true
when: run_once_drv_epson_multiprinter is not defined
- name: install AUR packages for epson - name: install AUR packages for epson
kewlfft.aur.aur: kewlfft.aur.aur:
use: yay use: yay

View File

@ -7,6 +7,3 @@ galaxy_info:
- name: Linux - name: Linux
versions: versions:
- all - all
dependencies:
- dev-yay
- sys-alm-compose

View File

@ -1,4 +1,14 @@
--- - name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- dev-yay
- sys-alm-compose
- set_fact:
run_once_drv_msi_keyboard_color: true
when: run_once_drv_msi_keyboard_color is not defined
- name: Install MSI packages - name: Install MSI packages
kewlfft.aur.aur: kewlfft.aur.aur:
use: yay use: yay

View File

@ -20,5 +20,3 @@ galaxy_info:
repository: https://github.com/kevinveenbirkenbach/package-manager repository: https://github.com/kevinveenbirkenbach/package-manager
issue_tracker_url: https://github.com/kevinveenbirkenbach/package-manager/issues issue_tracker_url: https://github.com/kevinveenbirkenbach/package-manager/issues
documentation: https://github.com/kevinveenbirkenbach/package-manager documentation: https://github.com/kevinveenbirkenbach/package-manager
dependencies:
- pkgmgr

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'pkgmgr'
include_role:
name: pkgmgr
- set_fact:
run_once_pkgmgr_install: true
when: run_once_pkgmgr_install is not defined
- name: update pkgmgr - name: update pkgmgr
shell: | shell: |
source ~/.venvs/pkgmgr/bin/activate source ~/.venvs/pkgmgr/bin/activate

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Automates the installation of Kevin's Package Manager — a tool for managing multiple repositories and automating Git operations." description: "Automates the installation of Kevin's Package Manager — a tool for managing multiple repositories and automating Git operations."
@ -32,7 +31,3 @@ galaxy_info:
repository: https://github.com/kevinveenbirkenbach/package-manager repository: https://github.com/kevinveenbirkenbach/package-manager
issue_tracker_url: https://github.com/kevinveenbirkenbach/package-manager/issues issue_tracker_url: https://github.com/kevinveenbirkenbach/package-manager/issues
documentation: https://github.com/kevinveenbirkenbach/package-manager documentation: https://github.com/kevinveenbirkenbach/package-manager
dependencies:
- dev-git
- dev-make
- dev-python-yaml

View File

@ -1,3 +1,15 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- dev-git
- dev-make
- dev-python-yaml
- set_fact:
run_once_pkgmgr: true
when: run_once_pkgmgr is not defined
- name: Ensure GitHub host key is in known_hosts - name: Ensure GitHub host key is in known_hosts
known_hosts: known_hosts:
path: "~/.ssh/known_hosts" path: "~/.ssh/known_hosts"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Automated domain provisioning (TLS, vHost, OAuth2) for Nginx." description: "Automated domain provisioning (TLS, vHost, OAuth2) for Nginx."
@ -23,5 +22,3 @@ galaxy_info:
repository: https://github.com/kevinveenbirkenbach/infinito-nexus repository: https://github.com/kevinveenbirkenbach/infinito-nexus
issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues
documentation: "https://docs.infinito.nexus/" documentation: "https://docs.infinito.nexus/"
dependencies:
- srv-proxy-7-4-core

View File

@ -1,5 +1,11 @@
# run_once_srv_proxy_6_6_domain: deactivated - name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-proxy-7-4-core'
include_role:
name: srv-proxy-7-4-core
- set_fact:
run_once_srv_proxy_6_6_domain: true
when: run_once_srv_proxy_6_6_domain is not defined
- include_tasks: "01_cloudflare.yml" - include_tasks: "01_cloudflare.yml"
when: dns_provider == "cloudflare" when: dns_provider == "cloudflare"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birchenbach" author: "Kevin Veen-Birchenbach"
description: "Deploys Lets Encrypt certificates into Docker Compose Nginx setups via systemd service and timer." description: "Deploys Lets Encrypt certificates into Docker Compose Nginx setups via systemd service and timer."
@ -20,6 +19,3 @@ galaxy_info:
platforms: platforms:
- name: Any - name: Any
versions: [all] versions: [all]
dependencies:
- sys-alm-compose

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-alm-compose'
include_role:
name: sys-alm-compose
- set_fact:
run_once_srv_proxy_6_6_tls_deploy: true
when: run_once_srv_proxy_6_6_tls_deploy is not defined
- name: add srv-proxy-6-6-tls-deploy.sh - name: add srv-proxy-6-6-tls-deploy.sh
template: template:
src: "srv-proxy-6-6-tls-deploy.sh.j2" src: "srv-proxy-6-6-tls-deploy.sh.j2"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Nginx reverse proxy front-end for local Docker applications." description: "Nginx reverse proxy front-end for local Docker applications."
@ -23,6 +22,3 @@ galaxy_info:
repository: https://github.com/kevinveenbirkenbach/infinito-nexus repository: https://github.com/kevinveenbirkenbach/infinito-nexus
issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues
documentation: "https://docs.infinito.nexus/" documentation: "https://docs.infinito.nexus/"
dependencies:
- srv-web-7-6-https
- srv-web-7-4-core

View File

@ -0,0 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- srv-web-7-6-https
- srv-web-7-4-core
- set_fact:
run_once_srv_proxy_7_4_core: true
when: run_once_srv_proxy_7_4_core is not defined

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: | description: |
@ -27,5 +26,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- srv-web-7-6-https

View File

@ -1,5 +1,11 @@
# run_once_srv_web_6_6_tls_core: deactivated - name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-web-7-6-https'
include_role:
name: srv-web-7-6-https
- set_fact:
run_once_srv_web_6_6_tls_core: true
when: run_once_srv_web_6_6_tls_core is not defined
- name: "Include flavor '{{ certbot_flavor }}' for '{{ domain }}'" - name: "Include flavor '{{ certbot_flavor }}' for '{{ domain }}'"
include_tasks: "{{ role_path }}/tasks/flavors/{{ certbot_flavor }}.yml" include_tasks: "{{ role_path }}/tasks/flavors/{{ certbot_flavor }}.yml"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: | description: |
@ -27,7 +26,4 @@ galaxy_info:
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies: dependencies:
- srv-web-7-7-certbot
- srv-web-7-4-core
- sys-alm-compose
- sys-cln-certs - sys-cln-certs

View File

@ -1,3 +1,15 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- srv-web-7-7-certbot
- srv-web-7-4-core
- sys-alm-compose
- set_fact:
run_once_srv_web_6_6_tls_renew: true
when: run_once_srv_web_6_6_tls_renew is not defined
- name: install certbot - name: install certbot
community.general.pacman: community.general.pacman:
name: name:

View File

@ -22,7 +22,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
dependencies:
- srv-web-7-4-core
- sys-cln-domains
- srv-web-7-7-letsencrypt

View File

@ -0,0 +1,12 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- srv-web-7-4-core
- sys-cln-domains
- srv-web-7-7-letsencrypt
- set_fact:
run_once_srv_web_7_6_https: true
when: run_once_srv_web_7_6_https is not defined

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Core role for Nginx HTML injection of Matomo, theming, iFrame and JS snippets based on application feature flags." description: "Core role for Nginx HTML injection of Matomo, theming, iFrame and JS snippets based on application feature flags."
@ -21,7 +20,3 @@ galaxy_info:
- name: Any - name: Any
versions: versions:
- all - all
dependencies:
# The injections are called in the script. Keep the logic there.
- srv-web-7-4-core

View File

@ -1,5 +1,11 @@
# run_once_srv_web_7_7_inj_compose: deactivated - name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-web-7-4-core'
include_role:
name: srv-web-7-4-core
- set_fact:
run_once_srv_web_7_7_inj_compose: true
when: run_once_srv_web_7_7_inj_compose is not defined
- name: Set inj_enabled dictionary - name: Set inj_enabled dictionary
set_fact: set_fact:
inj_enabled: inj_enabled:

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Global CSS injection for Nginx-based apps using dynamic colorschemes." description: "Global CSS injection for Nginx-based apps using dynamic colorschemes."
@ -25,5 +24,3 @@ galaxy_info:
repository: https://github.com/kevinveenbirkenbach/infinito-nexus repository: https://github.com/kevinveenbirkenbach/infinito-nexus
issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues
documentation: "https://docs.infinito.nexus/" documentation: "https://docs.infinito.nexus/"
dependencies:
- srv-web-7-4-core

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-web-7-4-core'
include_role:
name: srv-web-7-4-core
- set_fact:
run_once_srv_web_7_7_inj_css: true
when: run_once_srv_web_7_7_inj_css is not defined
- name: Generate color palette with colorscheme-generator - name: Generate color palette with colorscheme-generator
set_fact: set_fact:
color_palette: "{{ lookup('colorscheme', global_css_base_color, count=global_css_count, shades=global_css_shades) }}" color_palette: "{{ lookup('colorscheme', global_css_base_color, count=global_css_count, shades=global_css_shades) }}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Injects a custom JavaScript snippet into Nginx-served HTML responses via sub_filter." description: "Injects a custom JavaScript snippet into Nginx-served HTML responses via sub_filter."
@ -24,5 +23,3 @@ galaxy_info:
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
dependencies:
- srv-web-7-4-core

View File

@ -1,4 +1,11 @@
# run_once_srv_web_7_7_inj_javascript: deactivated - name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-web-7-4-core'
include_role:
name: srv-web-7-4-core
- set_fact:
run_once_srv_web_7_7_inj_javascript: true
when: run_once_srv_web_7_7_inj_javascript is not defined
- name: "Load JavaScript code for '{{ application_id }}'" - name: "Load JavaScript code for '{{ application_id }}'"
set_fact: set_fact:
javascript_code: "{{ lookup('template', modifier_javascript_template_file) }}" javascript_code: "{{ lookup('template', modifier_javascript_template_file) }}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin VeenBirkenbach" author: "Kevin VeenBirkenbach"
role_name: "srv-web-7-7-inj-logout" role_name: "srv-web-7-7-inj-logout"
@ -19,11 +18,7 @@ galaxy_info:
- csp - csp
- sub_filter - sub_filter
company: > company: >
Kevin VeenBirkenbach Kevin VeenBirkenbach Consulting & Coaching Solutions https://www.veen.world
Consulting & Coaching Solutions
https://www.veen.world
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://github.com/kevinveenbirkenbach/infinito-nexus/tree/main/roles/srv-web-7-7-inj-logout" documentation: "https://github.com/kevinveenbirkenbach/infinito-nexus/tree/main/roles/srv-web-7-7-inj-logout"
dependencies:
- srv-web-7-4-core

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-web-7-4-core'
include_role:
name: srv-web-7-4-core
- set_fact:
run_once_srv_web_7_7_inj_logout: true
when: run_once_srv_web_7_7_inj_logout is not defined
- name: "deploy the logout.js" - name: "deploy the logout.js"
include_tasks: "deploy.yml" include_tasks: "deploy.yml"
when: run_once_srv_web_7_7_inj_logout is not defined when: run_once_srv_web_7_7_inj_logout is not defined

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birchenbach" author: "Kevin Veen-Birchenbach"
description: "Injects Matomo analytics tracking code and noscript image tracker into Nginx-served HTML pages." description: "Injects Matomo analytics tracking code and noscript image tracker into Nginx-served HTML pages."
@ -19,6 +18,3 @@ galaxy_info:
platforms: platforms:
- name: Any - name: Any
versions: [all] versions: [all]
dependencies:
- srv-web-7-4-core

View File

@ -1,5 +1,11 @@
# run_once_srv_web_7_7_inj_matomo: deactivated - name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-web-7-4-core'
include_role:
name: srv-web-7-4-core
- set_fact:
run_once_srv_web_7_7_inj_matomo: true
when: run_once_srv_web_7_7_inj_matomo is not defined
- name: "Relevant variables for role: {{ role_path | basename }}" - name: "Relevant variables for role: {{ role_path | basename }}"
debug: debug:
msg: msg:
@ -19,7 +25,7 @@
- name: Set matomo_site_id to Null - name: Set matomo_site_id to Null
set_fact: set_fact:
matomo_site_id: Null matomo_site_id:
- name: Set fact for site ID if site already exists - name: Set fact for site ID if site already exists
set_fact: set_fact:

View File

@ -1,5 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Injects a JS snippet into HTML to notify parent windows of iframe location changes and force external links to new tabs." description: "Injects a JS snippet into HTML to notify parent windows of iframe location changes and force external links to new tabs."
@ -24,5 +22,3 @@ galaxy_info:
- csp - csp
- security - security
- postMessage - postMessage
dependencies:
- srv-web-7-4-core

View File

@ -1,4 +1,11 @@
# run_once_srv_web_7_7_inj_port_ui_desktop: deactivated - name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-web-7-4-core'
include_role:
name: srv-web-7-4-core
- set_fact:
run_once_srv_web_7_7_inj_port_ui_desktop: true
when: run_once_srv_web_7_7_inj_port_ui_desktop is not defined
- name: "Load iFrame handler JS template for '{{ application_id }}'" - name: "Load iFrame handler JS template for '{{ application_id }}'"
set_fact: set_fact:
iframe_code: "{{ lookup('template','iframe-handler.js.j2') }}" iframe_code: "{{ lookup('template','iframe-handler.js.j2') }}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "An Ansible role to automate Lets Encrypt SSL certificate issuance and renewal for Nginx" description: "An Ansible role to automate Lets Encrypt SSL certificate issuance and renewal for Nginx"
@ -22,5 +21,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- srv-web-6-6-tls-renew

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'srv-web-6-6-tls-renew'
include_role:
name: srv-web-6-6-tls-renew
- set_fact:
run_once_srv_web_7_7_letsencrypt: true
when: run_once_srv_web_7_7_letsencrypt is not defined
- block: - block:
- name: create nginx letsencrypt config file - name: create nginx letsencrypt config file
template: template:

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Automated backups to a swappable USB device." description: "Automated backups to a swappable USB device."
@ -22,6 +21,3 @@ galaxy_info:
repository: https://github.com/kevinveenbirkenbach/infinito-nexus repository: https://github.com/kevinveenbirkenbach/infinito-nexus
issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues issue_tracker_url: https://github.com/kevinveenbirkenbach/infinito-nexus/issues
documentation: "https://docs.infinito.nexus/" documentation: "https://docs.infinito.nexus/"
dependencies:
- sys-cln-bkps-service
- sys-lock

View File

@ -1,3 +1,14 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-cln-bkps-service
- sys-lock
- set_fact:
run_once_svc_bkp_loc_2_usb: true
when: run_once_svc_bkp_loc_2_usb is not defined
- name: Fail if any backup_to_usb variable is empty - name: Fail if any backup_to_usb variable is empty
assert: assert:
that: that:

View File

@ -1,5 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Pulls backups from a remote server and stores them locally using rsync with retry logic. This role is part of a comprehensive backup scheme and works in conjunction with other roles to ensure reliable backup operations." description: "Pulls backups from a remote server and stores them locally using rsync with retry logic. This role is part of a comprehensive backup scheme and works in conjunction with other roles to ensure reliable backup operations."
@ -25,10 +23,5 @@ galaxy_info:
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies: dependencies:
- dev-git
- sys-alm-compose
- sys-cln-bkps-timer - sys-cln-bkps-timer
- sys-cln-faild-bkps - sys-cln-faild-bkps
- sys-lock
- user-root
- sys-rst-daemon

View File

@ -1,3 +1,17 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- dev-git
- sys-alm-compose
- sys-lock
- user-root
- sys-rst-daemon
- set_fact:
run_once_svc_bkp_rmt_2_loc: true
when: run_once_svc_bkp_rmt_2_loc is not defined
- name: "create {{docker_backup_remote_to_local_folder}}" - name: "create {{docker_backup_remote_to_local_folder}}"
file: file:
path: "{{docker_backup_remote_to_local_folder}}" path: "{{docker_backup_remote_to_local_folder}}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: >- description: >-
@ -24,5 +23,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- docker-core # Loading it here to avoid extra flush for network init

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'docker-core'
include_role:
name: docker-core
- set_fact:
run_once_svc_db_postgres: true
when: run_once_svc_db_postgres is not defined
- name: Create Docker network for PostgreSQL - name: Create Docker network for PostgreSQL
community.docker.docker_network: community.docker.docker_network:
name: "{{ postgres_network_name }}" name: "{{ postgres_network_name }}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birchenbach" author: "Kevin Veen-Birchenbach"
description: "Automates swapfile creation on target systems by cloning and executing a swapfile script." description: "Automates swapfile creation on target systems by cloning and executing a swapfile script."
@ -19,5 +18,3 @@ galaxy_info:
- name: Any - name: Any
versions: versions:
- all - all
dependencies:
- pkgmgr-install

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'pkgmgr-install'
include_role:
name: pkgmgr-install
- set_fact:
run_once_svc_opt_swapfile: true
when: run_once_svc_opt_swapfile is not defined
- name: "pkgmgr install" - name: "pkgmgr install"
include_role: include_role:
name: pkgmgr-install name: pkgmgr-install

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Installs a unified systemd notification service that sends alerts via both Telegram and Email when a service fails." description: "Installs a unified systemd notification service that sends alerts via both Telegram and Email when a service fails."
@ -22,6 +21,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-telegram
- sys-alm-email

View File

@ -1,4 +1,14 @@
--- - name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-alm-telegram
- sys-alm-email
- set_fact:
run_once_sys_alm_compose: true
when: run_once_sys_alm_compose is not defined
- name: configure sys-alm-compose.infinito@.service - name: configure sys-alm-compose.infinito@.service
template: template:
src: sys-alm-compose@.service.j2 src: sys-alm-compose@.service.j2

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Installs and configures components for sending email notifications. This role is part of the sys-alm-compose suite, providing automated alerts when services fail." description: "Installs and configures components for sending email notifications. This role is part of the sys-alm-compose suite, providing automated alerts when services fail."
@ -22,6 +21,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-svc-msmtp
- sys-rst-daemon

View File

@ -1,3 +1,14 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-svc-msmtp
- sys-rst-daemon
- set_fact:
run_once_sys_alm_email: true
when: run_once_sys_alm_email is not defined
- name: "create {{systemd_notifier_email_folder}}" - name: "create {{systemd_notifier_email_folder}}"
file: file:
path: "{{systemd_notifier_email_folder}}" path: "{{systemd_notifier_email_folder}}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Installs and configures components for sending Telegram notifications through systemd. This role is part of the sys-alm-compose suite, providing automated alerts when services fail." description: "Installs and configures components for sending Telegram notifications through systemd. This role is part of the sys-alm-compose suite, providing automated alerts when services fail."
@ -22,5 +21,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-rst-daemon

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-rst-daemon'
include_role:
name: sys-rst-daemon
- set_fact:
run_once_sys_alm_telegram: true
when: run_once_sys_alm_telegram is not defined
- name: Fail if Telegram bot credentials are not set - name: Fail if Telegram bot credentials are not set
assert: assert:
that: that:

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Automates the backup of Docker volumes to a local folder" description: "Automates the backup of Docker volumes to a local folder"
@ -23,8 +22,4 @@ galaxy_info:
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies: dependencies:
- sys-bkp-provider
- sys-alm-compose
- sys-cln-faild-bkps - sys-cln-faild-bkps
- sys-lock
- sys-bkp-directory-validator

View File

@ -1,3 +1,16 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-bkp-provider
- sys-alm-compose
- sys-lock
- sys-bkp-directory-validator
- set_fact:
run_once_sys_bkp_docker_2_loc: true
when: run_once_sys_bkp_docker_2_loc is not defined
- include_tasks: 02_pkgmgr_routines.yml - include_tasks: 02_pkgmgr_routines.yml
when: backup_docker_to_local_folder is not defined when: backup_docker_to_local_folder is not defined

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Configures the host as a backup provider to facilitate secure backup operations." description: "Configures the host as a backup provider to facilitate secure backup operations."
@ -22,6 +21,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-bkp-provider-user
- sys-cln-bkps-timer

View File

@ -0,0 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-bkp-provider-user
- sys-cln-bkps-timer
- set_fact:
run_once_sys_bkp_provider: true
when: run_once_sys_bkp_provider is not defined

View File

@ -1,4 +1,3 @@
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: > description: >
@ -20,5 +19,3 @@ galaxy_info:
logo: logo:
class: "fa-solid fa-terminal" class: "fa-solid fa-terminal"
run_after: [] run_after: []
dependencies:
- dev-yay

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'dev-yay'
include_role:
name: dev-yay
- set_fact:
run_once_sys_cli: true
when: run_once_sys_cli is not defined
- name: "pkgmgr install infinito" - name: "pkgmgr install infinito"
include_role: include_role:
name: pkgmgr-install name: pkgmgr-install

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Automates the cleanup of old backups by executing a Python script that deletes outdated backup versions when disk usage exceeds a specified threshold." description: "Automates the cleanup of old backups by executing a Python script that deletes outdated backup versions when disk usage exceeds a specified threshold."
@ -21,8 +20,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- dev-python-pip
- sys-alm-compose
- sys-lock
- sys-rst-daemon

View File

@ -1,3 +1,16 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- dev-python-pip
- sys-alm-compose
- sys-lock
- sys-rst-daemon
- set_fact:
run_once_sys_cln_bkps_service: true
when: run_once_sys_cln_bkps_service is not defined
- name: install lsof and python-psutil - name: install lsof and python-psutil
community.general.pacman: community.general.pacman:
name: name:

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Schedules periodic cleanup of old backups by configuring a systemd timer to trigger the sys-cln-bkps-service role." description: "Schedules periodic cleanup of old backups by configuring a systemd timer to trigger the sys-cln-bkps-service role."
@ -21,6 +20,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-cln-bkps-service
- sys-rst-daemon

View File

@ -1,3 +1,14 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-cln-bkps-service
- sys-rst-daemon
- set_fact:
run_once_sys_cln_bkps_timer: true
when: run_once_sys_cln_bkps_timer is not defined
- name: set service_name to sys-cln-backups - name: set service_name to sys-cln-backups
set_fact: set_fact:
service_name: "sys-cln-backups" service_name: "sys-cln-backups"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Automates the revocation and deletion of unused Let's Encrypt certificates" description: "Automates the revocation and deletion of unused Let's Encrypt certificates"
@ -23,6 +22,3 @@ galaxy_info:
issue_tracker_url: "https://github.com/kevinveenbirkenbach/certreap/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/certreap/issues"
documentation: "https://github.com/kevinveenbirkenbach/certreap#readme" documentation: "https://github.com/kevinveenbirkenbach/certreap#readme"
dependencies:
- sys-alm-compose
- sys-rst-daemon

View File

@ -1,3 +1,14 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-alm-compose
- sys-rst-daemon
- set_fact:
run_once_sys_cln_certs: true
when: run_once_sys_cln_certs is not defined
- name: "pkgmgr install" - name: "pkgmgr install"
include_role: include_role:
name: pkgmgr-install name: pkgmgr-install

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Frees disk space on the target system by executing a cleanup script that removes temporary files, clears package caches, and optionally handles Docker and backup cleanup." description: "Frees disk space on the target system by executing a cleanup script that removes temporary files, clears package caches, and optionally handles Docker and backup cleanup."
@ -21,7 +20,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-compose
- sys-lock
- sys-rst-daemon

View File

@ -1,3 +1,15 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-alm-compose
- sys-lock
- sys-rst-daemon
- set_fact:
run_once_sys_cln_disc_space: true
when: run_once_sys_cln_disc_space is not defined
- name: "create {{cleanup_disc_space_folder}}" - name: "create {{cleanup_disc_space_folder}}"
file: file:
path: "{{cleanup_disc_space_folder}}" path: "{{cleanup_disc_space_folder}}"

View File

@ -20,6 +20,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- srv-web-7-4-core
- sys-rst-daemon

View File

@ -1,4 +1,14 @@
--- - name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- srv-web-7-4-core
- sys-rst-daemon
- set_fact:
run_once_sys_cln_domains: true
when: run_once_sys_cln_domains is not defined
- name: Include task to remove deprecated nginx configs - name: Include task to remove deprecated nginx configs
include_tasks: remove_deprecated_nginx_configs.yml include_tasks: remove_deprecated_nginx_configs.yml
loop: "{{ deprecated_domains }}" loop: "{{ deprecated_domains }}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Cleans up failed Docker backups by configuring a systemd service and timer to execute the cleanup operations periodically." description: "Cleans up failed Docker backups by configuring a systemd service and timer to execute the cleanup operations periodically."
@ -21,8 +20,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-compose
- sys-lock
- sys-bkp-directory-validator
- sys-rst-daemon

View File

@ -1,3 +1,16 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- sys-alm-compose
- sys-lock
- sys-bkp-directory-validator
- sys-rst-daemon
- set_fact:
run_once_sys_cln_faild_bkps: true
when: run_once_sys_cln_faild_bkps is not defined
- name: "pkgmgr install" - name: "pkgmgr install"
include_role: include_role:
name: pkgmgr-install name: pkgmgr-install

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Health-check for Btrfs filesystems, alerts on any device error counters." description: "Health-check for Btrfs filesystems, alerts on any device error counters."
@ -20,5 +19,3 @@ galaxy_info:
- filesystem - filesystem
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-compose

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-alm-compose'
include_role:
name: sys-alm-compose
- set_fact:
run_once_sys_hlth_btrfs: true
when: run_once_sys_hlth_btrfs is not defined
- name: "create {{docker_health_btrfs_folder}}" - name: "create {{docker_health_btrfs_folder}}"
file: file:
path: "{{docker_health_btrfs_folder}}" path: "{{docker_health_btrfs_folder}}"

View File

@ -23,5 +23,3 @@ galaxy_info:
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues" issue_tracker_url: "https://github.com/kevinveenbirkenbach/infinito-nexus/issues"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-compose

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-alm-compose'
include_role:
name: sys-alm-compose
- set_fact:
run_once_sys_hlth_csp: true
when: run_once_sys_hlth_csp is not defined
- name: "pkgmgr install" - name: "pkgmgr install"
include_role: include_role:
name: pkgmgr-install name: pkgmgr-install

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Disk-space usage monitor; alerts when usage exceeds threshold." description: "Disk-space usage monitor; alerts when usage exceeds threshold."
@ -20,5 +19,3 @@ galaxy_info:
- systemd - systemd
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-compose

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-alm-compose'
include_role:
name: sys-alm-compose
- set_fact:
run_once_sys_hlth_disc_space: true
when: run_once_sys_hlth_disc_space is not defined
- name: "create {{health_disc_space_folder}}" - name: "create {{health_disc_space_folder}}"
file: file:
path: "{{health_disc_space_folder}}" path: "{{health_disc_space_folder}}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Checks Docker containers for unhealthy or exited states and alerts on any issues." description: "Checks Docker containers for unhealthy or exited states and alerts on any issues."
@ -20,5 +19,3 @@ galaxy_info:
- systemd - systemd
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-compose

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-alm-compose'
include_role:
name: sys-alm-compose
- set_fact:
run_once_sys_hlth_docker_container: true
when: run_once_sys_hlth_docker_container is not defined
- name: "create {{health_docker_container_folder}}" - name: "create {{health_docker_container_folder}}"
file: file:
path: "{{health_docker_container_folder}}" path: "{{health_docker_container_folder}}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Detects anonymous Docker volumes not bound to containers (unless whitelisted) and alerts." description: "Detects anonymous Docker volumes not bound to containers (unless whitelisted) and alerts."
@ -20,5 +19,3 @@ galaxy_info:
- systemd - systemd
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-compose

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-alm-compose'
include_role:
name: sys-alm-compose
- set_fact:
run_once_sys_hlth_docker_volumes: true
when: run_once_sys_hlth_docker_volumes is not defined
- name: "create {{health_docker_volumes_folder}}" - name: "create {{health_docker_volumes_folder}}"
file: file:
path: "{{health_docker_volumes_folder}}" path: "{{health_docker_volumes_folder}}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Searches the systemd journal for errors over the past day and alerts if any are found." description: "Searches the systemd journal for errors over the past day and alerts if any are found."
@ -20,5 +19,3 @@ galaxy_info:
- systemd - systemd
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-compose

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-alm-compose'
include_role:
name: sys-alm-compose
- set_fact:
run_once_sys_hlth_journalctl: true
when: run_once_sys_hlth_journalctl is not defined
- name: "create {{health_journalctl_folder}}" - name: "create {{health_journalctl_folder}}"
file: file:
path: "{{health_journalctl_folder}}" path: "{{health_journalctl_folder}}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Periodic MTA health-check: sends test mail via msmtp and alerts on failure." description: "Periodic MTA health-check: sends test mail via msmtp and alerts on failure."
@ -20,5 +19,3 @@ galaxy_info:
- systemd - systemd
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- sys-alm-telegram

View File

@ -1,3 +1,11 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependency 'sys-alm-telegram'
include_role:
name: sys-alm-telegram
- set_fact:
run_once_sys_hlth_msmtp: true
when: run_once_sys_hlth_msmtp is not defined
- name: "create {{ health_msmtp_folder }}" - name: "create {{ health_msmtp_folder }}"
file: file:
path: "{{ health_msmtp_folder }}" path: "{{ health_msmtp_folder }}"

View File

@ -1,4 +1,3 @@
---
galaxy_info: galaxy_info:
author: "Kevin Veen-Birkenbach" author: "Kevin Veen-Birkenbach"
description: "Checks that each Nginx domain returns its expected HTTP status and alerts on unexpected codes." description: "Checks that each Nginx domain returns its expected HTTP status and alerts on unexpected codes."
@ -21,6 +20,3 @@ galaxy_info:
- systemd - systemd
repository: "https://github.com/kevinveenbirkenbach/infinito-nexus" repository: "https://github.com/kevinveenbirkenbach/infinito-nexus"
documentation: "https://docs.infinito.nexus" documentation: "https://docs.infinito.nexus"
dependencies:
- dev-python-pip
- sys-alm-compose

View File

@ -1,3 +1,14 @@
- name: Load former meta dependencies once
block:
- name: Include moved dependencies
include_role:
name: '{{ item }}'
loop:
- dev-python-pip
- sys-alm-compose
- set_fact:
run_once_sys_hlth_webserver: true
when: run_once_sys_hlth_webserver is not defined
- name: Install required Python modules - name: Install required Python modules
community.general.pacman: community.general.pacman:
name: python-requests name: python-requests

Some files were not shown because too many files have changed in this diff Show More