commit fa1b5cce00f67fc27db27dc70d0dfe8e36ffd27c Author: Chris Hammer Date: Mon Dec 16 19:59:57 2024 -0500 Initial project commit diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..b6d3809 --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,5 @@ +skip_list: + - yaml[colons] + - yaml[empty-lines] + - yaml[line-length] + - no-changed-when diff --git a/Untitled-1.yml b/Untitled-1.yml new file mode 100644 index 0000000..4bec183 --- /dev/null +++ b/Untitled-1.yml @@ -0,0 +1,27 @@ +--- +- name: Determine network interface name from IP address + hosts: localhost + tasks: + - name: Gather all facts + ansible.builtin.setup: + + - name: Find the interface for a given IP address + set_fact: + interface_name: "{{ ansible_interfaces | map('regex_replace', '^', 'ansible_') | map('extract', ansible_facts) | selectattr('ipv4.address', 'equalto', '192.168.1.150') | map(attribute='device') | first }}" + + - name: Display the interface name + debug: + msg: "The interface for IP address 192.168.1.150 is {{ interface_name }}" + + +--- +- name: Count matches in a file + hosts: localhost + tasks: + - name: Search for the pattern in the file + shell: "grep -o 'pattern' /path/to/file | wc -l" + register: match_count + + - name: Display the number of matches + debug: + msg: "Number of matches: {{ match_count.stdout }}" diff --git a/ansible.cfg b/ansible.cfg new file mode 100644 index 0000000..04c9fcf --- /dev/null +++ b/ansible.cfg @@ -0,0 +1,26 @@ +[defaults] +inventory = hosts +roles_path = roles +collections_path = collections +remote_tmp = /tmp/.ansible-${USER}/tmp +gathering = smart +gather_timeout = 600 +fact_caching = jsonfile +fact_caching_connection = /tmp/.ansible_facts +fact_caching_timeout = 300 +retry_files_enabled = false +forks = 40 +timeout = 30 +host_key_checking = false +display_skipped_hosts = false +deprecation_warnings = false + +# callback_whitelist is deprecated +# we only include here for backwards compatibility +callback_whitelist = ansible.posix.profile_tasks, ansible.posix.timer +callbacks_enabled = ansible.posix.profile_tasks, ansible.posix.timer + +[ssh_connection] +pipelining = True +ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o PreferredAuthentications=publickey + diff --git a/bool.yml b/bool.yml new file mode 100644 index 0000000..eb30f53 --- /dev/null +++ b/bool.yml @@ -0,0 +1,26 @@ +--- +- name: Something + hosts: localhost + connection: local + gather_facts: false + become: false + + vars: + bigboot_execute: true + skip_rear: false + + tasks: + - name: Do something if something else is something + ansible.builtin.debug: + msg: "Executing ReaR Backup" + when: + - bigboot_execute | default(true) | bool + - not skip_rear | default(false) | bool + + + # - name: Do something if something else is something + # ansible.builtin.debug: + # msg: "Skipping ReaR Backup" + # when: + # - bigboot_execute | default(true) | bool + # - skip_rear | default(false) | bool diff --git a/capture_lv_device_details.yml b/capture_lv_device_details.yml new file mode 100644 index 0000000..d7c4e25 --- /dev/null +++ b/capture_lv_device_details.yml @@ -0,0 +1,66 @@ +--- +- name: Something + hosts: bigboot + gather_facts: true + + vars: + bigboot_boot_device: /dev/sda + + bigboot_test_var: + key1: value1 + key2: value2 + key3: nope + key4: 12345 + + tasks: + - name: Capture all logical volume paritions on /boot device + ansible.builtin.shell: + cmd: | + set -o pipefail + lsblk -pl -o name,type {{ bigboot_boot_device }} | grep -i lvm + executable: /bin/bash + changed_when: false + failed_when: bigboot_adjacent_lvm['rc'] not in [0, 141] + register: bigboot_adjacent_lvm + + - name: Map the device to its mount point if applicable + ansible.builtin.set_fact: + bigboot_adjacent_lvm_devices: "{{ bigboot_adjacent_lvm_devices | default([]) \ + | combine({item | split(' ') | first: ansible_facts['mounts'] \ + | selectattr('device', 'equalto', item | split(' ') | first) \ + | map(attribute='mount')}) }}" + loop: "{{ bigboot_adjacent_lvm['stdout_lines'] }}" + + - name: Debug bigboot_adjacent_lvm_devices + ansible.builtin.debug: + var: bigboot_adjacent_lvm_devices + + - name: Debug - Capture the device name of the mounted logical volumes + ansible.builtin.debug: + msg: "{{ item['key'] }} :: {{ item['value'] }}" + loop: "{{ bigboot_adjacent_lvm_devices | dict2items }}" + + - name: Debug - logic + ansible.builtin.debug: + msg: "{{ item['key'] }} :: {{ item['value'] }}" + loop: "{{ bigboot_adjacent_lvm_devices | dict2items }}" + when: item['value'] | regex_search('/[a-zA-Z]') + + - name: Capture the device name of the mounted logical volumes + ansible.builtin.set_fact: + bigboot_lvm_mounts: "{{ bigboot_lvm_mounts | default([]) + [item['key']] }}" + loop: "{{ bigboot_adjacent_lvm_devices | dict2items }}" + when: item['value'] | regex_search('[/a-zA-Z]') + + - name: Debug bigboot_lvm_mounts + ansible.builtin.debug: + var: bigboot_lvm_mounts + + # - name: Set adjacent LVM device name + # ansible.builtin.set_fact: + # bigboot_adjacent_lvm_device: "{{ bigboot_lvm_mounts | first }}" + + # - name: Debug bigboot_adjacent_lvm_device + # ansible.builtin.debug: + # var: bigboot_adjacent_lvm_device + diff --git a/check_device.yml b/check_device.yml new file mode 100644 index 0000000..f0d0a47 --- /dev/null +++ b/check_device.yml @@ -0,0 +1,50 @@ +- name: Capture logical volume adjacent to /boot + ansible.builtin.shell: + cmd: | + set -o pipefail + lsblk -pl -o name,type,mountpoint {{ bigboot_boot_mount['device'][:-1] }} | grep -vi swap | grep lvm | head -1 | awk '{ print $1}' + executable: /bin/sh + changed_when: false + register: bigboot_adjacent_lvm + +- name: Debug bigboot_adjacent_lvm + ansible.builtin.debug: + var: bigboot_adjacent_lvm + +- name: Set adjacent LVM device name + ansible.builtin.set_fact: + bigboot_adjacent_lvm_device: "{{ bigboot_adjacent_lvm.stdout }}" + +- name: Debug bigboot_adjacent_lvm_device + ansible.builtin.debug: + var: bigboot_adjacent_lvm_device + +- name: Get logical volume mount information + ansible.builtin.set_fact: + bigboot_lv_info: "{{ ansible_facts.mounts \ + | selectattr('device', 'equalto', bigboot_adjacent_lvm_device) | first }}" + +- name: Debug bigboot_lv_info + ansible.builtin.debug: + var: bigboot_lv_info + +# - name: Get the mount point info +# ansible.builtin.set_fact: +# shrink_lv_mount_info: "{{ ansible_facts.mounts | selectattr('device', 'equalto', item.device) }}" + +# - name: Assert that the mount point exists +# ansible.builtin.assert: +# that: (shrink_lv_mount_info | length) == 1 +# fail_msg: "Mount point {{ item.device }} does not exist" + +# - name: Assert that the filesystem is supported +# ansible.builtin.assert: +# that: shrink_lv_mount_info[0].fstype in ['ext4'] +# fail_msg: "Unsupported filesystem '{{ shrink_lv_mount_info[0].fstype }}' on '{{ item.device }}'" + +# - name: Assert that the filesystem has enough free space +# ansible.builtin.assert: +# that: shrink_lv_mount_info[0].block_size * shrink_lv_mount_info[0].block_used < (item.size | ansible.builtin.human_to_bytes) +# fail_msg: > +# Requested size {{ item.size }} is smaller than currently used +# {{ (shrink_lv_mount_info[0].block_size * shrink_lv_mount_info[0].block_used) | ansible.builtin.human_readable }} diff --git a/check_rear.yml b/check_rear.yml new file mode 100644 index 0000000..a87a74f --- /dev/null +++ b/check_rear.yml @@ -0,0 +1,31 @@ +--- +- name: Something + hosts: temp + become: false + gather_facts: true + + tasks: + - name: Read the conf file + ansible.builtin.slurp: + src: /etc/rear/local.conf + register: slurp_local_conf + + - name: Debug local_conf_content + ansible.builtin.debug: + var: slurp_local_conf + + - name: Decode the conf file content + ansible.builtin.set_fact: + local_conf_content: "{{ slurp_local_conf['content'] | b64decode }}" + + - name: Debug local_conf_content + ansible.builtin.debug: + var: local_conf_content + + - name: Extract the NFS server address + ansible.builtin.set_fact: + nfs_server: "{{ local_conf_content | regex_search('nfs://(.*?)/', '\\1') | first }}" + + - name: Debug nfs_server + ansible.builtin.debug: + var: nfs_server diff --git a/collections/ansible_collections/ansible.posix-1.5.1.info/GALAXY.yml b/collections/ansible_collections/ansible.posix-1.5.1.info/GALAXY.yml new file mode 100644 index 0000000..bcab9a2 --- /dev/null +++ b/collections/ansible_collections/ansible.posix-1.5.1.info/GALAXY.yml @@ -0,0 +1,8 @@ +download_url: https://galaxy.ansible.com/api/v3/plugin/ansible/content/published/collections/artifacts/ansible-posix-1.5.1.tar.gz +format_version: 1.0.0 +name: posix +namespace: ansible +server: https://galaxy.ansible.com/api/ +signatures: [] +version: 1.5.1 +version_url: /api/v3/plugin/ansible/content/published/collections/index/ansible/posix/versions/1.5.1/ diff --git a/collections/ansible_collections/ansible/posix/.azure-pipelines/README.md b/collections/ansible_collections/ansible/posix/.azure-pipelines/README.md new file mode 100644 index 0000000..385e70b --- /dev/null +++ b/collections/ansible_collections/ansible/posix/.azure-pipelines/README.md @@ -0,0 +1,3 @@ +## Azure Pipelines Configuration + +Please see the [Documentation](https://github.com/ansible/community/wiki/Testing:-Azure-Pipelines) for more information. diff --git a/collections/ansible_collections/ansible/posix/.azure-pipelines/azure-pipelines.yml b/collections/ansible_collections/ansible/posix/.azure-pipelines/azure-pipelines.yml new file mode 100644 index 0000000..9fb818b --- /dev/null +++ b/collections/ansible_collections/ansible/posix/.azure-pipelines/azure-pipelines.yml @@ -0,0 +1,341 @@ +trigger: + batch: true + branches: + include: + - main + - stable-* + +pr: + autoCancel: true + branches: + include: + - main + - stable-* + +schedules: + - cron: 0 9 * * * + displayName: Nightly + always: true + branches: + include: + - main + - stable-* + +variables: + - name: checkoutPath + value: ansible_collections/ansible/posix + - name: coverageBranches + value: main + - name: pipelinesCoverage + value: coverage + - name: entryPoint + value: tests/utils/shippable/shippable.sh + - name: fetchDepth + value: 0 + +resources: + containers: + - container: default + image: quay.io/ansible/azure-pipelines-test-container:3.0.0 + +pool: Standard + +stages: + +## Docker + - stage: Docker_devel + displayName: Docker devel + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: devel/linux/{0}/1 + targets: + - name: CentOS 7 + test: centos7 + - name: Fedora 37 + test: fedora37 + - name: openSUSE 15 py3 + test: opensuse15 + - name: Ubuntu 20.04 + test: ubuntu2004 + - name: Ubuntu 22.04 + test: ubuntu2204 + - stage: Docker_2_14 + displayName: Docker 2.14 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.14/linux/{0}/1 + targets: + - name: CentOS 7 + test: centos7 + - name: Fedora 36 + test: fedora36 + - name: openSUSE 15 py3 + test: opensuse15 + - name: Ubuntu 20.04 + test: ubuntu2004 + - name: Ubuntu 22.04 + test: ubuntu2204 + - stage: Docker_2_13 + displayName: Docker 2.13 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.13/linux/{0}/1 + targets: + - name: CentOS 7 + test: centos7 + - name: Fedora 34 + test: fedora34 + - name: Fedora 35 + test: fedora35 + - name: openSUSE 15 py3 + test: opensuse15 + - name: Ubuntu 18.04 + test: ubuntu1804 + - name: Ubuntu 20.04 + test: ubuntu2004 + - stage: Docker_2_12 + displayName: Docker 2.12 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.12/linux/{0}/1 + targets: + - name: CentOS 6 + test: centos6 + - name: CentOS 7 + test: centos7 + - name: Fedora 33 + test: fedora33 + - name: Fedora 34 + test: fedora34 + - name: openSUSE 15 py2 + test: opensuse15py2 + - name: openSUSE 15 py3 + test: opensuse15 + - name: Ubuntu 18.04 + test: ubuntu1804 + - name: Ubuntu 20.04 + test: ubuntu2004 + - stage: Docker_2_11 + displayName: Docker 2.11 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.11/linux/{0}/1 + targets: + - name: CentOS 6 + test: centos6 + - name: CentOS 7 + test: centos7 + - name: Fedora 32 + test: fedora32 + - name: Fedora 33 + test: fedora33 + - name: openSUSE 15 py2 + test: opensuse15py2 + - name: openSUSE 15 py3 + test: opensuse15 + - name: Ubuntu 18.04 + test: ubuntu1804 + - name: Ubuntu 20.04 + test: ubuntu2004 + - stage: Docker_2_10 + displayName: Docker 2.10 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.10/linux/{0}/1 + targets: + - name: CentOS 6 + test: centos6 + - name: CentOS 7 + test: centos7 + - name: Fedora 30 + test: fedora30 + - name: Fedora 31 + test: fedora31 + - name: openSUSE 15 py2 + test: opensuse15py2 + - name: openSUSE 15 py3 + test: opensuse15 + - name: Ubuntu 16.04 + test: ubuntu1604 + - name: Ubuntu 18.04 + test: ubuntu1804 + - stage: Docker_2_9 + displayName: Docker 2.9 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.9/linux/{0}/1 + targets: + - name: CentOS 6 + test: centos6 + - name: CentOS 7 + test: centos7 + - name: Fedora 30 + test: fedora30 + - name: Fedora 31 + test: fedora31 + - name: openSUSE 15 py2 + test: opensuse15py2 + - name: openSUSE 15 py3 + test: opensuse15 + - name: Ubuntu 16.04 + test: ubuntu1604 + - name: Ubuntu 18.04 + test: ubuntu1804 + +## Remote + - stage: Remote_devel + displayName: Remote devel + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: devel/{0}/1 + targets: + - name: MacOS 12.0 + test: macos/12.0 + - name: RHEL 7.9 + test: rhel/7.9 + - name: RHEL 8.7 + test: rhel/8.7 + - name: RHEL 9.1 + test: rhel/9.1 + - name: FreeBSD 12.4 + test: freebsd/12.4 + - name: FreeBSD 13.1 + test: freebsd/13.1 + - stage: Remote_2_14 + displayName: Remote 2.14 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.14/{0}/1 + targets: + - name: MacOS 12.0 + test: macos/12.0 + - name: RHEL 7.9 + test: rhel/7.9 + - name: RHEL 8.6 + test: rhel/8.6 + - name: RHEL 9.0 + test: rhel/9.0 + - name: FreeBSD 12.3 + test: freebsd/12.3 + - name: FreeBSD 13.1 + test: freebsd/13.1 + - stage: Remote_2_13 + displayName: Remote 2.13 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.13/{0}/1 + targets: + - name: MacOS 12.0 + test: macos/12.0 + - name: RHEL 7.9 + test: rhel/7.9 + - name: RHEL 8.5 + test: rhel/8.5 + - name: FreeBSD 12.3 + test: freebsd/12.3 + - name: FreeBSD 13.0 + test: freebsd/13.0 + - stage: Remote_2_12 + displayName: Remote 2.12 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.12/{0}/1 + targets: + - name: MacOS 11.1 + test: macos/11.1 + - name: RHEL 7.9 + test: rhel/7.9 + - name: RHEL 8.4 + test: rhel/8.4 + - name: FreeBSD 12.2 + test: freebsd/12.2 + - name: FreeBSD 13.0 + test: freebsd/13.0 + - stage: Remote_2_11 + displayName: Remote 2.11 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.11/{0}/1 + targets: + - name: MacOS 11.1 + test: macos/11.1 + - name: RHEL 7.9 + test: rhel/7.9 + - name: RHEL 8.3 + test: rhel/8.3 + - name: FreeBSD 12.2 + test: freebsd/12.2 + - stage: Remote_2_10 + displayName: Remote 2.10 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.10/{0}/1 + targets: + - name: OS X 10.11 + test: osx/10.11 + - name: RHEL 7.9 + test: rhel/7.9 + - name: RHEL 8.2 + test: rhel/8.2 + - stage: Remote_2_9 + displayName: Remote 2.9 + dependsOn: [] + jobs: + - template: templates/matrix.yml + parameters: + testFormat: 2.9/{0}/1 + targets: + - name: OS X 10.11 + test: osx/10.11 + - name: RHEL 7.9 + test: rhel/7.9 + - name: RHEL 8.1 + test: rhel/8.1 + +## Finally + + - stage: Summary + condition: succeededOrFailed() + dependsOn: + - Remote_2_9 + - Docker_2_9 + - Remote_2_10 + - Docker_2_10 + - Remote_2_11 + - Docker_2_11 + - Remote_2_12 + - Docker_2_12 + - Remote_2_13 + - Docker_2_13 + - Remote_2_14 + - Docker_2_14 + - Remote_devel + - Docker_devel + jobs: + - template: templates/coverage.yml diff --git a/collections/ansible_collections/ansible/posix/.azure-pipelines/scripts/aggregate-coverage.sh b/collections/ansible_collections/ansible/posix/.azure-pipelines/scripts/aggregate-coverage.sh new file mode 100755 index 0000000..f3113dd --- /dev/null +++ b/collections/ansible_collections/ansible/posix/.azure-pipelines/scripts/aggregate-coverage.sh @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Aggregate code coverage results for later processing. + +set -o pipefail -eu + +agent_temp_directory="$1" + +PATH="${PWD}/bin:${PATH}" + +mkdir "${agent_temp_directory}/coverage/" + +options=(--venv --venv-system-site-packages --color -v) + +ansible-test coverage combine --export "${agent_temp_directory}/coverage/" "${options[@]}" + +if ansible-test coverage analyze targets generate --help >/dev/null 2>&1; then + # Only analyze coverage if the installed version of ansible-test supports it. + # Doing so allows this script to work unmodified for multiple Ansible versions. + ansible-test coverage analyze targets generate "${agent_temp_directory}/coverage/coverage-analyze-targets.json" "${options[@]}" +fi diff --git a/collections/ansible_collections/ansible/posix/.azure-pipelines/scripts/combine-coverage.py b/collections/ansible_collections/ansible/posix/.azure-pipelines/scripts/combine-coverage.py new file mode 100755 index 0000000..506ade6 --- /dev/null +++ b/collections/ansible_collections/ansible/posix/.azure-pipelines/scripts/combine-coverage.py @@ -0,0 +1,60 @@ +#!/usr/bin/env python +""" +Combine coverage data from multiple jobs, keeping the data only from the most recent attempt from each job. +Coverage artifacts must be named using the format: "Coverage $(System.JobAttempt) {StableUniqueNameForEachJob}" +The recommended coverage artifact name format is: Coverage $(System.JobAttempt) $(System.StageDisplayName) $(System.JobDisplayName) +Keep in mind that Azure Pipelines does not enforce unique job display names (only names). +It is up to pipeline authors to avoid name collisions when deviating from the recommended format. +""" + +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +import os +import re +import shutil +import sys + + +def main(): + """Main program entry point.""" + source_directory = sys.argv[1] + + if '/ansible_collections/' in os.getcwd(): + output_path = "tests/output" + else: + output_path = "test/results" + + destination_directory = os.path.join(output_path, 'coverage') + + if not os.path.exists(destination_directory): + os.makedirs(destination_directory) + + jobs = {} + count = 0 + + for name in os.listdir(source_directory): + match = re.search('^Coverage (?P[0-9]+) (?P