update readme and bump version
modified: README.md modified: setup.py
This commit is contained in:
parent
138d2b7632
commit
ccba8aeea2
2 changed files with 26 additions and 28 deletions
20
README.md
20
README.md
|
|
@ -12,26 +12,24 @@ https://git.unturf.com/python/virt-back
|
||||||
**usage**
|
**usage**
|
||||||
|
|
||||||
```
|
```
|
||||||
root@guile[/mnt/downloads/virt-back]# ./virt-back --help
|
virt-back --help
|
||||||
Usage: virt-back [options]
|
usage: virt-back [-h] [-q] [-d] [-g] [-a amount] [-p 'PATH'] [-u 'URI'] [-i] [--info-all] [-b] [-r] [-s] [-c] [--backup-all] [--reboot-all] [--shutdown-all] [--create-all]
|
||||||
|
|
||||||
|
A backup utility for QEMU, KVM, XEN, and Virtualbox guests. Virt-back is a python application that uses the libvirt api to safely shutdown, gzip, and restart guests. The backup process
|
||||||
|
logs to syslog for auditing and virt-back works great with cron for scheduling outages. Virt-back has been placed in the public domain and the latest version may be downloaded here:
|
||||||
|
|
||||||
A backup utility for QEMU, KVM, XEN, and Virtualbox guests. Virt-back is a
|
|
||||||
python application that uses the libvirt api to safely shutdown, gzip, and
|
|
||||||
restart guests. The backup process logs to syslog for auditing and virt-back
|
|
||||||
works great with cron for scheduling outages. Virt-back has been placed in the
|
|
||||||
public domain and the latest version may be downloaded here:
|
|
||||||
https://git.unturf.com/python/virt-back
|
https://git.unturf.com/python/virt-back
|
||||||
|
|
||||||
Options:
|
options:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-q, --quiet prevent output to stdout
|
-q, --quiet prevent output to stdout
|
||||||
-d, --date append date to tar filename [default: no date]
|
-d, --date append date to tar filename [default: no date]
|
||||||
-g, --no-gzip do not gzip the resulting tar file
|
-g, --no-gzip do not gzip the resulting tar file
|
||||||
-a amount, --retention=amount
|
-a amount, --retention amount
|
||||||
backups to retain [default: 3]
|
backups to retain [default: 3]
|
||||||
-p 'PATH', --path='PATH'
|
-p 'PATH', --path 'PATH'
|
||||||
backup path [default: '/KVMBACK']
|
backup path [default: '/KVMBACK']
|
||||||
-u 'URI', --uri='URI'
|
-u 'URI', --uri 'URI'
|
||||||
optional hypervisor uri
|
optional hypervisor uri
|
||||||
|
|
||||||
Actions for info testing:
|
Actions for info testing:
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -7,7 +7,7 @@ with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8"
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="virt-back",
|
name="virt-back",
|
||||||
version="0.2.2",
|
version="0.2.4",
|
||||||
description="virt-back: A backup utility for QEMU, KVM, XEN, and Virtualbox guests",
|
description="virt-back: A backup utility for QEMU, KVM, XEN, and Virtualbox guests",
|
||||||
keywords="backup virtual hypervisor QEMU KVM XEN Virtualbox",
|
keywords="backup virtual hypervisor QEMU KVM XEN Virtualbox",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue