Merge pull request #70 from corvus-migratorius/minor-edits
Assorted minor edits
This commit is contained in:
11
.github/workflows/linters.yml
vendored
11
.github/workflows/linters.yml
vendored
@@ -13,7 +13,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
|
|
||||||
- uses: mamba-org/setup-micromamba@4d84239119b14cba1690b971f05c0bab912bea04
|
- uses: mamba-org/setup-micromamba@4d84239119b14cba1690b971f05c0bab912bea04
|
||||||
with:
|
with:
|
||||||
micromamba-version: '2.4.0-0'
|
micromamba-version: '2.4.0-0'
|
||||||
@@ -22,14 +21,6 @@ jobs:
|
|||||||
post-cleanup: 'all'
|
post-cleanup: 'all'
|
||||||
cache-environment: true
|
cache-environment: true
|
||||||
|
|
||||||
# - name: "Install role dependencies"
|
|
||||||
# run: ansible-galaxy install -r requirements.yml
|
|
||||||
# shell: micromamba-shell {0}
|
|
||||||
|
|
||||||
- name: "Install community.general collection"
|
|
||||||
run: ansible-galaxy collection install community.general
|
|
||||||
shell: micromamba-shell {0}
|
|
||||||
|
|
||||||
- name: Check workflow files themselves with ActionLint
|
- name: Check workflow files themselves with ActionLint
|
||||||
run: actionlint
|
run: actionlint
|
||||||
shell: micromamba-shell {0}
|
shell: micromamba-shell {0}
|
||||||
@@ -38,7 +29,7 @@ jobs:
|
|||||||
run: yamllint ci/*.yml
|
run: yamllint ci/*.yml
|
||||||
shell: micromamba-shell {0}
|
shell: micromamba-shell {0}
|
||||||
|
|
||||||
- name: "Install collection dependencies"
|
- name: Install collection dependencies
|
||||||
run: ansible-galaxy install -r requirements.yml
|
run: ansible-galaxy install -r requirements.yml
|
||||||
shell: micromamba-shell {0}
|
shell: micromamba-shell {0}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
ansible-lint
|
ansible-lint==25.12.1
|
||||||
molecule==24.12.0
|
molecule==24.12.0
|
||||||
molecule-plugins[docker]
|
molecule-plugins[docker]
|
||||||
docker~=7.1.0
|
docker~=7.1.0
|
||||||
requests==2.31.0 # pinned to the latest version not breaking Docker SDK
|
requests==2.31.0 # pinned to the latest version not breaking Docker SDK
|
||||||
yamllint
|
yamllint==1.37.1
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
---
|
---
|
||||||
collections:
|
collections:
|
||||||
- name: ansible.posix
|
- name: ansible.posix
|
||||||
|
- name: community.crypto
|
||||||
|
- name: community.docker
|
||||||
- name: community.general
|
- name: community.general
|
||||||
- name: community.grafana
|
- name: community.grafana
|
||||||
- name: community.docker
|
|
||||||
- name: community.crypto
|
|
||||||
- name: maxhoesel.borgbackup
|
|
||||||
- name: lucasheld.uptime_kuma
|
|
||||||
- name: community.postgresql
|
- name: community.postgresql
|
||||||
|
- name: lucasheld.uptime_kuma
|
||||||
|
- name: maxhoesel.borgbackup
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
- name: "OpenSSH | Ensure openssh client tools are installed"
|
- name: "OpenSSH | Ensure openssh client tools are installed (Debian)"
|
||||||
when: ansible_os_family == "Debian"
|
when: ansible_os_family == "Debian"
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: openssh-client
|
name: openssh-client
|
||||||
state: present
|
state: present
|
||||||
cache_valid_time: 3000
|
cache_valid_time: 3000
|
||||||
|
|
||||||
- name: "OpenSSH | Ensure openssh client tools are installed"
|
- name: "OpenSSH | Ensure openssh client tools are installed (RedHat)"
|
||||||
when: ansible_os_family == "RedHat"
|
when: ansible_os_family == "RedHat"
|
||||||
ansible.builtin.dnf:
|
ansible.builtin.dnf:
|
||||||
name: openssh-clients
|
name: openssh-clients
|
||||||
|
|||||||
Reference in New Issue
Block a user