Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tinyblargon/ansible-role-qemu-guest-agent
Ansible Role for installing qemu-guest-agent.
https://github.com/tinyblargon/ansible-role-qemu-guest-agent
ansible debian qemu-guest-agent ubuntu
Last synced: 23 days ago
JSON representation
Ansible Role for installing qemu-guest-agent.
- Host: GitHub
- URL: https://github.com/tinyblargon/ansible-role-qemu-guest-agent
- Owner: Tinyblargon
- License: mit
- Created: 2023-08-28T10:32:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-23T14:21:10.000Z (4 months ago)
- Last Synced: 2024-07-23T16:35:54.864Z (4 months ago)
- Topics: ansible, debian, qemu-guest-agent, ubuntu
- Homepage: https://galaxy.ansible.com/ui/standalone/roles/tinyblargon/qemu_guest_agent/
- Size: 11.7 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: qemu_guest_agent
Ansible Role for installing qemu-guest-agent.
## Requirements
N/A
## Role Variables
| **Variable Name** | **Type**| **Default Value**| **Description**|
| :----------------------| :------:| :---------------:| :--------------|
| qemu_guest_agent_state:| string | "detect" | This variable can be one of the following states `"absent"`, `"detect"`, `"latest"`, `"present"`. When `"absent"` the qemu-guest-agent package will be removed. When `"detect"` the package will be installed if the host has the virtual device required by the qemu-guest-agent, if the virtual device is absent the package will be removed. When `"latest"` the package will be installed or updated to the latest version. When `"present"` the package will be installed.|## Example Playbooks
```yaml
- hosts: all
roles:
- role: tinyblargon.qemu_guest_agent
vars:
qemu_guest_agent_state: "present"
```## License
MIT