https://github.com/jomrr/ansible-role-resolved
Ansible role for setting up systemd-resolved.
https://github.com/jomrr/ansible-role-resolved
ansible ansible-role resolved systemd-resolved
Last synced: about 1 month ago
JSON representation
Ansible role for setting up systemd-resolved.
- Host: GitHub
- URL: https://github.com/jomrr/ansible-role-resolved
- Owner: jomrr
- License: mit
- Created: 2024-04-03T19:46:03.000Z (about 2 years ago)
- Default Branch: dev
- Last Pushed: 2025-06-02T21:01:30.000Z (about 1 year ago)
- Last Synced: 2025-06-03T11:07:03.134Z (about 1 year ago)
- Topics: ansible, ansible-role, resolved, systemd-resolved
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible role resolved
  
**Ansible role for setting up systemd-resolved.**
## Description
This role installs and configures systemd-resolved on the targeted host(s).
## Prerequisites
This role has no special prerequisites.
### System packages (Fedora)
- `python3` (Python 3.8 or later)
### Python (requirements.txt)
- ansible >= 2.15
## Dependencies (requirements.yml)
```yaml
collections:
- community.general
roles: []
```
## Supported Platforms
| OS Family | Distribution | Version | Container Image |
|-----------|--------------|---------|-----------------|
| RedHat | AlmaLinux | latest | [jomrr/molecule-almalinux:latest]( https://hub.docker.com/r/jomrr/molecule-almalinux ) |
| Archlinux | Archlinux | latest | [jomrr/molecule-archlinux:latest]( https://hub.docker.com/r/jomrr/molecule-archlinux ) |
| Debian | Debian | latest | [jomrr/molecule-debian:latest]( https://hub.docker.com/r/jomrr/molecule-debian ) |
| RedHat | Fedora | latest | [jomrr/molecule-fedora:latest]( https://hub.docker.com/r/jomrr/molecule-fedora ) |
| Suse | openSUSE Leap | latest | [jomrr/molecule-opensuse-leap:latest]( https://hub.docker.com/r/jomrr/molecule-opensuse-leap ) |
| Debian | Ubuntu | latest | [jomrr/molecule-ubuntu:latest]( https://hub.docker.com/r/jomrr/molecule-ubuntu ) |
## Role Variables
No role default variables specified, see [defaults/main.yml](defaults/main.yml).
## Example Playbook
Example playbooks(s) that show how to use this role.
## Simple example playbook
A simple default example playbook for using jomrr.resolved.
```yaml
---
# name: "jomrr.resolved"
# file: "playbook_resolved.yml"
- name: "PLAYBOOK | resolved"
hosts: "resolved_hosts"
gather_facts: true
roles:
- role: "jomrr.resolved"
```
## Author(s) and License
- :octocat: Author:: [jomrr](https://github.com/jomrr)
- :triangular_flag_on_post: Copyright:: 2024, Jonas Mauer
- :page_with_curl: License:: [MIT](LICENSE)
---