radiorabe / backup

Backup process and automation scripts
GNU Affero General Public License v3.0
3 stars 1 forks source link

Use the ovirt API to find VMs to be backed up. #13

Closed micressor closed 6 years ago

micressor commented 6 years ago

Example:

url="https://ovirt.example.com/ovirt-engine/api"
user="admin@internal"
password="******"

curl \
--insecure \
--header "Accept: application/xml" \
--user "${user}:${password}" \
"${url}/vms"

Quelle: https://www.ovirt.org/develop/api/rest-api/rest-api/

Thx to @smirta

micressor commented 6 years ago

This is implemented now.