Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artcom/ansible-role-hivemq-backup
Ansible role to make periodic backups of HiveMQ broker data.
https://github.com/artcom/ansible-role-hivemq-backup
Last synced: about 1 month ago
JSON representation
Ansible role to make periodic backups of HiveMQ broker data.
- Host: GitHub
- URL: https://github.com/artcom/ansible-role-hivemq-backup
- Owner: artcom
- License: mit
- Created: 2020-09-02T14:13:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-25T08:39:36.000Z (almost 4 years ago)
- Last Synced: 2024-11-07T06:36:46.971Z (3 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 15
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HiveMQ Backup
Ansible role to make periodic backups of HiveMQ broker data.## Requirements
None.## Role Variables
Available variables are listed below, along with default values `(see defaults/main.yml)`:
```yaml
backup_data_path: null
backup_destination_path: null
```
Required variables (role will fail if the variables are not set):
```yaml
backup_data_path: "string"
backup_destination_path: "string"
```## Dependencies
None.# Example Playbook
```yaml
- name: Backup HiveMQ data
hosts: all
become: true
roles:
- role: hivemq-backup
vars:
backup_data_path: /var/local/hivemq
backup_destination_path: "{{ backup_data_path }}/backup"
```## Test
### Requirements
- python >= 3.7
- docker### Run
```bash
pip install -r requirements.txt
molecule test
```## License
MIT