fix(meta): declare the versions the role actually requires
The role claimed to work with ansible 2.9, but two of its building blocks did not exist back then. The path_join filter was introduced in ansible-base 2.10 and the btrfs_subvolume module in community.general 6.6.0, which in turn requires ansible-core 2.11. Running the role on 2.9 therefore failed with an undefined filter instead of a readable message about an unsupported control node. The collection is now declared in a requirements.yml, mirroring the layout of the certificate_authority role, and the lower bound is pinned because an older community.general still resolves but lacks the btrfs module. The linter workflow installs that file, because ansible-lint cannot resolve the btrfs_subvolume tasks without the collection being present, which only surfaced in CI where no collections are preinstalled. Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
@@ -17,4 +17,5 @@ jobs:
|
||||
uses: ansible/ansible-lint@665d9e07a1943254d2910faffc106adaf7ea7294 # v26.8.0
|
||||
with:
|
||||
args: "--config-file .ansible-lint"
|
||||
requirements_file: "requirements.yml"
|
||||
setup_python: "true"
|
||||
|
||||
@@ -6,6 +6,17 @@ The ansible role `volker-raschek.unix-users` create and manage users on Linux ba
|
||||
Linux, Fedora and Ubuntu. Furthermore, the role can also be used to create groups, `~/.forward`, `~/.netrc` and to
|
||||
manage the `~/.ssh` directory.
|
||||
|
||||
## Requirements
|
||||
|
||||
The role requires `ansible-core` 2.11 or newer. A home directory can optionally be created as btrfs subvolume, which
|
||||
relies on the `btrfs_subvolume` module of the collection `community.general`.
|
||||
|
||||
```bash
|
||||
ansible-galaxy collection install -r requirements.yml
|
||||
```
|
||||
|
||||
The role manages users, groups and their home directories, so it has to be executed with `become: true`.
|
||||
|
||||
## Examples
|
||||
|
||||
### User and group
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ galaxy_info:
|
||||
- unix
|
||||
- linux
|
||||
license: "MIT"
|
||||
min_ansible_version: "2.9"
|
||||
min_ansible_version: "2.11"
|
||||
namespace: volker-raschek
|
||||
platforms:
|
||||
- name: ArchLinux
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
|
||||
collections:
|
||||
# The btrfs_subvolume module has been added in community.general 6.6.0.
|
||||
- name: community.general
|
||||
version: ">=6.6.0"
|
||||
Reference in New Issue
Block a user