mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
Another big round of refactoring and cleaning...
This commit is contained in:
20
roles/sys-bkp-directory-validator/README.md
Normal file
20
roles/sys-bkp-directory-validator/README.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Backup Directory Validator
|
||||
|
||||
## Description
|
||||
|
||||
This Ansible role installs the [directory-validator](https://github.com/kevinveenbirkenbach/directory-validator.git). It is used by the sys-bkp-docker-to-local and sys-cln-faild-bkps roles to verify whether backups have been successfully created.
|
||||
|
||||
## Overview
|
||||
|
||||
The role retrieves the latest version of the directory-validator from its Git repository and installs it into the designated folder (configured via the `backup_directory_validator_folder` variable). A fact is set to ensure that the repository is pulled only once per playbook run.
|
||||
|
||||
## Purpose
|
||||
|
||||
The primary purpose of this role is to validate backup directories. By fetching the directory-validator tool, it enables dependent roles to assess the integrity and success of backup operations.
|
||||
|
||||
## Features
|
||||
|
||||
- **Git Repository Pull:** Automatically pulls the latest version of the directory-validator from Git.
|
||||
- **Idempotent Execution:** Ensures that the repository is fetched only once per playbook run.
|
||||
- **Backup Verification:** Serves as a validation step for other sys-bkp-related roles.
|
||||
- **Configurable Destination:** The target folder is customizable via the `backup_directory_validator_folder` variable.
|
24
roles/sys-bkp-directory-validator/meta/main.yml
Normal file
24
roles/sys-bkp-directory-validator/meta/main.yml
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: "Kevin Veen-Birkenbach"
|
||||
description: "Setup the directory validator to validate backup directories"
|
||||
license: "CyMaIS NonCommercial License (CNCL)"
|
||||
license_url: "https://s.veen.world/cncl"
|
||||
company: |
|
||||
Kevin Veen-Birkenbach
|
||||
Consulting & Coaching Solutions
|
||||
https://www.veen.world
|
||||
min_ansible_version: "2.9"
|
||||
platforms:
|
||||
- name: Linux
|
||||
versions:
|
||||
- all
|
||||
galaxy_tags:
|
||||
- backup
|
||||
- validator
|
||||
- directory
|
||||
- git
|
||||
- automation
|
||||
repository: "https://s.veen.world/cymais"
|
||||
issue_tracker_url: "https://s.veen.world/cymaisissues"
|
||||
documentation: "https://s.veen.world/cymais"
|
11
roles/sys-bkp-directory-validator/tasks/main.yml
Normal file
11
roles/sys-bkp-directory-validator/tasks/main.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
- name: "pkgmgr install"
|
||||
include_role:
|
||||
name: pkgmgr-install
|
||||
vars:
|
||||
package_name: directory-validator
|
||||
when: run_once_backup_directory_validator is not defined
|
||||
|
||||
- name: run the backup_directory_validator tasks once
|
||||
set_fact:
|
||||
run_once_backup_directory_validator: true
|
||||
when: run_once_backup_directory_validator is not defined
|
Reference in New Issue
Block a user