diff --git a/roles/backup-directory-validator/README.md b/roles/backup-directory-validator/README.md index d4289405..ee76189e 100644 --- a/roles/backup-directory-validator/README.md +++ b/roles/backup-directory-validator/README.md @@ -2,7 +2,7 @@ ## Description -This Ansible role pulls the [directory-validator](https://github.com/kevinveenbirkenbach/directory-validator.git) repository to a predefined location. It is used by the backup-docker-to-local and cleanup-failed-docker-backups roles to verify whether backups have been successfully created. +This Ansible role installs the [directory-validator](https://github.com/kevinveenbirkenbach/directory-validator.git). It is used by the backup-docker-to-local and cleanup-failed-docker-backups roles to verify whether backups have been successfully created. ## Overview diff --git a/roles/backup-directory-validator/meta/main.yml b/roles/backup-directory-validator/meta/main.yml index a5dc4229..dfe9519c 100644 --- a/roles/backup-directory-validator/meta/main.yml +++ b/roles/backup-directory-validator/meta/main.yml @@ -23,4 +23,5 @@ galaxy_info: issue_tracker_url: "https://s.veen.world/cymaisissues" documentation: "https://s.veen.world/cymais" -dependencies: [] +dependencies: + - package-manager diff --git a/roles/backup-directory-validator/tasks/main.yml b/roles/backup-directory-validator/tasks/main.yml index 753ceefd..e2afefad 100644 --- a/roles/backup-directory-validator/tasks/main.yml +++ b/roles/backup-directory-validator/tasks/main.yml @@ -1,9 +1,6 @@ -- name: pull directory-validator.git - git: - repo: "https://github.com/kevinveenbirkenbach/directory-validator.git" - dest: "{{backup_directory_validator_folder}}" - update: yes - ignore_errors: true +- name: install directory-validator + command: + cmd: "pkgmgr install directory-validator" when: run_once_backup_directory_validator is not defined - name: run the backup_directory_validator tasks once diff --git a/roles/backup-docker-to-local/meta/main.yml b/roles/backup-docker-to-local/meta/main.yml index 28706126..e498e168 100644 --- a/roles/backup-docker-to-local/meta/main.yml +++ b/roles/backup-docker-to-local/meta/main.yml @@ -23,9 +23,9 @@ galaxy_info: issue_tracker_url: "https://s.veen.world/cymaisissues" documentation: "https://s.veen.world/cymais" dependencies: - - git - backups-provider - systemd-notifier - cleanup-failed-docker-backups - system-maintenance-lock - - backup-directory-validator \ No newline at end of file + - backup-directory-validator + - package-manager \ No newline at end of file diff --git a/roles/backup-docker-to-local/tasks/main.yml b/roles/backup-docker-to-local/tasks/main.yml index 117286de..9b321ed6 100644 --- a/roles/backup-docker-to-local/tasks/main.yml +++ b/roles/backup-docker-to-local/tasks/main.yml @@ -1,17 +1,16 @@ -- name: install required software - community.general.pacman: - name: - - lsof - - python-pandas - state: present +- name: install backup-docker-to-local + command: + cmd: "pkgmgr install backup-docker-to-local" when: run_once_backup_docker_to_local is not defined -- name: pull backup-docker-to-local.git - git: - repo: "https://github.com/kevinveenbirkenbach/backup-docker-to-local.git" - dest: "{{backup_docker_to_local_folder}}" - update: yes - ignore_errors: true +- name: Retrieve backup-docker-to-local path from pkgmgr + command: pkgmgr path backup-docker-to-local + register: pkgmgr_output + when: run_once_backup_docker_to_local is not defined + +- name: Set fact for backup_docker_to_local_folder + set_fact: + backup_docker_to_local_folder: "{{ pkgmgr_output.stdout }}" when: run_once_backup_docker_to_local is not defined - name: configure backup-docker-to-local-everything.cymais.service diff --git a/roles/backup-docker-to-local/vars/main.yml b/roles/backup-docker-to-local/vars/main.yml deleted file mode 100644 index a12d9b3d..00000000 --- a/roles/backup-docker-to-local/vars/main.yml +++ /dev/null @@ -1 +0,0 @@ -backup_docker_to_local_folder: "{{path_administrator_scripts}}backup-docker-to-local/" \ No newline at end of file diff --git a/roles/cleanup-failed-docker-backups/meta/main.yml b/roles/cleanup-failed-docker-backups/meta/main.yml index 71a96c2f..e853aac1 100644 --- a/roles/cleanup-failed-docker-backups/meta/main.yml +++ b/roles/cleanup-failed-docker-backups/meta/main.yml @@ -22,7 +22,7 @@ galaxy_info: issue_tracker_url: "https://s.veen.world/cymaisissues" documentation: "https://s.veen.world/cymais" dependencies: - - git - systemd-notifier - system-maintenance-lock - backup-directory-validator + - package-manager diff --git a/roles/cleanup-failed-docker-backups/tasks/main.yml b/roles/cleanup-failed-docker-backups/tasks/main.yml index 7af9a5b2..79b9df85 100644 --- a/roles/cleanup-failed-docker-backups/tasks/main.yml +++ b/roles/cleanup-failed-docker-backups/tasks/main.yml @@ -1,9 +1,16 @@ -- name: pull cleanup-failed-docker-backups.git - git: - repo: "https://github.com/kevinveenbirkenbach/cleanup-failed-docker-backups.git" - dest: "{{backup_docker_to_local_cleanup_folder}}" - update: yes - ignore_errors: true +- name: install cleanup-failed-docker-backups + command: + cmd: "pkgmgr install cleanup-failed-docker-backups" + when: run_once_cleanup_failed_docker_backups is not defined + +- name: Retrieve backup-docker-to-local path from pkgmgr + command: pkgmgr path cleanup-failed-docker-backups + register: pkgmgr_output + when: run_once_cleanup_failed_docker_backups is not defined + +- name: Set fact for backup_docker_to_local_cleanup_folder + set_fact: + backup_docker_to_local_cleanup_folder: "{{ pkgmgr_output.stdout }}" when: run_once_cleanup_failed_docker_backups is not defined - name: configure cleanup-failed-docker-backups.cymais.service diff --git a/roles/cleanup-failed-docker-backups/vars/main.yml b/roles/cleanup-failed-docker-backups/vars/main.yml deleted file mode 100644 index d39530f0..00000000 --- a/roles/cleanup-failed-docker-backups/vars/main.yml +++ /dev/null @@ -1 +0,0 @@ -backup_docker_to_local_cleanup_folder: "{{path_administrator_scripts}}cleanup-failed-docker-backups/" \ No newline at end of file diff --git a/roles/git/README.md b/roles/git/README.md new file mode 100644 index 00000000..33842b66 --- /dev/null +++ b/roles/git/README.md @@ -0,0 +1,27 @@ +# Git + +## Description + +This Ansible role installs Git on the target system using the Pacman package manager. It ensures that Git is installed only once, even when the role is applied to multiple hosts or executed in a multi-task scenario. + +## Overview + +Designed for Arch Linux systems, this role leverages the `pacman` module to install Git. It uses a fact (`run_once_git`) to control task execution, ensuring that the Git installation is performed only once per run. + +## Purpose + +The purpose of this role is to automate the installation of Git in a consistent and idempotent manner. It is especially useful in environments where Git is a prerequisite for further automation or development tasks. + +## Features + +- **Git Installation:** Uses the Pacman package manager to install Git. +- **Idempotent Execution:** Sets a fact to guarantee that the installation tasks are executed only once. +- **Optimized Deployment:** Suitable for use in multi-host environments to avoid redundant installations. + +## Credits 📝 + +Developed and maintained by **Kevin Veen-Birkenbach**. +Learn more at [www.veen.world](https://www.veen.world) + +Part of the [CyMaIS Project](https://github.com/kevinveenbirkenbach/cymais) +License: [CyMaIS NonCommercial License (CNCL)](https://s.veen.world/cncl) diff --git a/roles/git/meta/main.yml b/roles/git/meta/main.yml new file mode 100644 index 00000000..92c63f2d --- /dev/null +++ b/roles/git/meta/main.yml @@ -0,0 +1,21 @@ +--- +galaxy_info: + author: "Kevin Veen-Birkenbach" + description: "Installs Git using the Pacman package manager on Arch Linux systems." + 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: Archlinux + versions: + - rolling + galaxy_tags: + - git + - pacman + - archlinux + - installation +dependencies: [] diff --git a/roles/git/tasks/main.yml b/roles/git/tasks/main.yml index 2a4fba37..f5caefa7 100644 --- a/roles/git/tasks/main.yml +++ b/roles/git/tasks/main.yml @@ -1,5 +1,7 @@ - name: install git - pacman: name=git state=present + pacman: + name: git + state: present when: run_once_git is not defined - name: run the git tasks once diff --git a/roles/package-manager/README.md b/roles/package-manager/README.md new file mode 100644 index 00000000..65330939 --- /dev/null +++ b/roles/package-manager/README.md @@ -0,0 +1,33 @@ +# Kevins Package Manager 🤖📦 + +## Description + +This Ansible role installs and configures [Kevin's Package Manager](https://github.com/kevinveenbirkenbach/package-manager) - a configurable Python tool designed to manage multiple repositories and automate common Git operations. The role clones the repository from GitHub, sets the executable permissions for the main script, and runs the installation command to set up command aliases. + +## Overview + +This role automates the deployment of Kevin's Package Manager by: +- Cloning the repository from GitHub. +- Setting the proper executable permissions on `main.py`. +- Executing the installation command to create/update repository command wrappers. + +It ensures that the Package Manager is ready to manage repositories, perform Git operations, and streamline software management tasks. + +## Purpose + +The purpose of this role is to simplify the installation of Kevin's Package Manager, reducing manual steps and ensuring a consistent setup across environments. Ideal for developers and system administrators, it helps integrate repository management seamlessly into your automation workflows. + +## Features + +- **Repository Cloning:** Automatically clones the Package Manager repository from GitHub. +- **Executable Setup:** Sets proper permissions on the main script. +- **Alias Installation:** Runs the installation command to generate command aliases. +- **Configurable Paths:** Allows customization of both the installation and binary directories. + +## Credits 📝 + +Developed and maintained by **Kevin Veen-Birkenbach**. +Learn more at [www.veen.world](https://www.veen.world) + +Part of the [CyMaIS Project](https://github.com/kevinveenbirkenbach/cymais) +License: [MIT License](../LICENSE) diff --git a/roles/package-manager/files/config.yaml.j2 b/roles/package-manager/files/config.yaml.j2 new file mode 100644 index 00000000..40b35306 --- /dev/null +++ b/roles/package-manager/files/config.yaml.j2 @@ -0,0 +1,3 @@ +directories: + repositories: "{{repositories_directory}}" + binaries: "{{binaries_directory}}" \ No newline at end of file diff --git a/roles/package-manager/meta/main.yml b/roles/package-manager/meta/main.yml new file mode 100644 index 00000000..d48e683a --- /dev/null +++ b/roles/package-manager/meta/main.yml @@ -0,0 +1,36 @@ +--- +galaxy_info: + author: "Kevin Veen-Birkenbach" + description: "Automates the installation of Kevin's Package Manager — a tool for managing multiple repositories and automating Git operations." + 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: Debian + versions: + - stretch + - buster + - bullseye + - name: Ubuntu + versions: + - bionic + - focal + - jammy + - name: Archlinux + versions: + - rolling + galaxy_tags: + - package-manager + - automation + - git + - repositories + - development + repository: https://github.com/kevinveenbirkenbach/package-manager + issue_tracker_url: https://github.com/kevinveenbirkenbach/package-manager/issues + documentation: https://github.com/kevinveenbirkenbach/package-manager +dependencies: + - git diff --git a/roles/package-manager/tasks/main.yml b/roles/package-manager/tasks/main.yml new file mode 100644 index 00000000..9a741051 --- /dev/null +++ b/roles/package-manager/tasks/main.yml @@ -0,0 +1,43 @@ +--- +- name: Create installation directory for Kevin's Package Manager + file: + path: "{{ pkgmgr_install_path }}" + state: directory + mode: '0755' + become: yes + when: run_once_package_manager is not defined + +- name: Clone Kevin's Package Manager repository + git: + repo: "{{ pkgmgr_repo_url }}" + dest: "{{ pkgmgr_install_path }}" + version: "HEAD" + force: yes + become: yes + when: run_once_package_manager is not defined + +- name: Ensure main.py is executable + file: + path: "{{ pkgmgr_install_path }}/main.py" + mode: '0755' + become: yes + when: run_once_package_manager is not defined + +- name: create config.yaml + template: + src: config.yaml.j2 + dest: "{{pkgmgr_config_path}}" + become: yes + when: run_once_package_manager is not defined + +- name: Run the Package Manager install command to create an alias for Kevins package manager + command: "{{ pkgmgr_install_command }}" + args: + chdir: "{{ pkgmgr_install_path }}" + become: yes + when: run_once_package_manager is not defined + +- name: run run_once_package_manager tasks once + set_fact: + run_once_package_managerr: true + when: run_once_package_manager is not defined \ No newline at end of file diff --git a/roles/package-manager/vars/main.yml b/roles/package-manager/vars/main.yml new file mode 100644 index 00000000..eb5a7e08 --- /dev/null +++ b/roles/package-manager/vars/main.yml @@ -0,0 +1,20 @@ +--- +# Variables for Kevin's Package Manager installation + +# The Git repository URL for Kevin's Package Manager +pkgmgr_repo_url: "https://github.com/kevinveenbirkenbach/package-manager.git" + +# Directory which contains all Repositories managed by Kevin's Package Manager +repositories_directory: "/opt/Repositories/" + +# The directory where the repository will be cloned +pkgmgr_install_path: "{{repositories_directory}}github.com/kevinveenbirkenbach/package-manager" + +# File containing the configuration +pkgmgr_config_path: "{{pkgmgr_install_path}}/config/config.yaml" + +# The directory where executable aliases will be installed (ensure it's in your PATH) +binaries_directory: "/usr/local/bin" + +# The command to run to install/update the Package Manager's aliases +pkgmgr_install_command: "./main.py install pkgmgr" diff --git a/roles/system-btrfs-auto-balancer/tasks/main.yml b/roles/system-btrfs-auto-balancer/tasks/main.yml index 4c665390..9195d6dc 100644 --- a/roles/system-btrfs-auto-balancer/tasks/main.yml +++ b/roles/system-btrfs-auto-balancer/tasks/main.yml @@ -1,9 +1,6 @@ -- name: pull auto-btrfs-balancer.git - git: - repo: "https://github.com/kevinveenbirkenbach/auto-btrfs-balancer.git" - dest: "{{system_btrfs_auto_balancer_folder}}" - update: yes - ignore_errors: true +- name: install auto-btrfs-balancer + command: + cmd: "pkgmgr install auto-btrfs-balancer" when: run_once_system_btrfs_auto_balancer is not defined - name: configure system-btrfs-auto-balancer.cymais.service diff --git a/roles/system-btrfs-auto-balancer/templates/system-btrfs-auto-balancer.service.j2 b/roles/system-btrfs-auto-balancer/templates/system-btrfs-auto-balancer.service.j2 index 2be59062..e2e0098a 100644 --- a/roles/system-btrfs-auto-balancer/templates/system-btrfs-auto-balancer.service.j2 +++ b/roles/system-btrfs-auto-balancer/templates/system-btrfs-auto-balancer.service.j2 @@ -4,4 +4,4 @@ OnFailure=systemd-notifier.cymais@%n.service [Service] Type=oneshot -ExecStart=/bin/sh -c '/usr/bin/python {{system_btrfs_auto_balancer_folder}}main.py 90 10' \ No newline at end of file +ExecStart=/bin/sh -c 'auto-btrfs-balancer 90 10' \ No newline at end of file diff --git a/roles/system-swapfile/meta/main.yml b/roles/system-swapfile/meta/main.yml index b6af57e0..a6de1568 100644 --- a/roles/system-swapfile/meta/main.yml +++ b/roles/system-swapfile/meta/main.yml @@ -22,4 +22,4 @@ galaxy_info: issue_tracker_url: "https://s.veen.world/cymaisissues" documentation: "https://s.veen.world/cymais" dependencies: - - git \ No newline at end of file + - package-manager \ No newline at end of file diff --git a/roles/system-swapfile/tasks/main.yml b/roles/system-swapfile/tasks/main.yml index 21d2910a..f48d2e91 100644 --- a/roles/system-swapfile/tasks/main.yml +++ b/roles/system-swapfile/tasks/main.yml @@ -1,11 +1,8 @@ -- name: pull swapfile creating script - git: - repo: "https://github.com/kevinveenbirkenbach/create-linux-swapfile.git" - dest: "$HOME/Repositories/github.com/kevinveenbirkenbach/create-linux-swapfile" - update: yes - ignore_errors: true - become: false +- name: install swap-forge + command: + cmd: "pkgmgr install backup-docker-to-local" + become: true - name: Execute create swapfile script - ansible.builtin.shell: bash "/home/{{client_username}}/Repositories/github.com/kevinveenbirkenbach/create-linux-swapfile/create-linux-swapfile.sh" "{{swapfile_size}}" + ansible.builtin.shell: swap-forge "{{swapfile_size}}" become: true \ No newline at end of file