virt-back 0.2.3__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {virt-back-0.2.3 → virt-back-0.2.4}/PKG-INFO +27 -29
- {virt-back-0.2.3 → virt-back-0.2.4}/README.md +26 -28
- {virt-back-0.2.3 → virt-back-0.2.4}/setup.py +1 -1
- {virt-back-0.2.3 → virt-back-0.2.4}/virt_back.egg-info/PKG-INFO +27 -29
- {virt-back-0.2.3 → virt-back-0.2.4}/setup.cfg +0 -0
- {virt-back-0.2.3 → virt-back-0.2.4}/virt-back +0 -0
- {virt-back-0.2.3 → virt-back-0.2.4}/virt_back.egg-info/SOURCES.txt +0 -0
- {virt-back-0.2.3 → virt-back-0.2.4}/virt_back.egg-info/dependency_links.txt +0 -0
- {virt-back-0.2.3 → virt-back-0.2.4}/virt_back.egg-info/requires.txt +0 -0
- {virt-back-0.2.3 → virt-back-0.2.4}/virt_back.egg-info/top_level.txt +0 -0
- {virt-back-0.2.3 → virt-back-0.2.4}/virtback.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: virt-back
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: virt-back: A backup utility for QEMU, KVM, XEN, and Virtualbox guests
|
|
5
5
|
Home-page: https://git.unturf.com/python/virt-back
|
|
6
6
|
Author: Russell Ballestrini
|
|
@@ -24,49 +24,47 @@ https://git.unturf.com/python/virt-back
|
|
|
24
24
|
**usage**
|
|
25
25
|
|
|
26
26
|
```
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
A backup utility for QEMU, KVM, XEN, and Virtualbox guests. Virt-back is a
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
works great with cron for scheduling outages. Virt-back has been placed in the
|
|
34
|
-
public domain and the latest version may be downloaded here:
|
|
27
|
+
virt-back --help
|
|
28
|
+
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]
|
|
29
|
+
|
|
30
|
+
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
|
|
31
|
+
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:
|
|
32
|
+
|
|
35
33
|
https://git.unturf.com/python/virt-back
|
|
36
34
|
|
|
37
|
-
|
|
35
|
+
options:
|
|
38
36
|
-h, --help show this help message and exit
|
|
39
37
|
-q, --quiet prevent output to stdout
|
|
40
38
|
-d, --date append date to tar filename [default: no date]
|
|
41
39
|
-g, --no-gzip do not gzip the resulting tar file
|
|
42
|
-
-a amount, --retention
|
|
40
|
+
-a amount, --retention amount
|
|
43
41
|
backups to retain [default: 3]
|
|
44
|
-
-p 'PATH', --path
|
|
42
|
+
-p 'PATH', --path 'PATH'
|
|
45
43
|
backup path [default: '/KVMBACK']
|
|
46
|
-
-u 'URI', --uri
|
|
44
|
+
-u 'URI', --uri 'URI'
|
|
47
45
|
optional hypervisor uri
|
|
48
46
|
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
Actions for info testing:
|
|
48
|
+
These options display info or test a list of guests.
|
|
51
49
|
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
-i, --info info/test a list of guests (space delimited dom names)
|
|
51
|
+
--info-all attempt to show info on ALL guests
|
|
54
52
|
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
Actions for a list of dom names:
|
|
54
|
+
WARNING: These options WILL bring down guests!
|
|
57
55
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
56
|
+
-b, --backup backup a list of guests (space delimited dom names)
|
|
57
|
+
-r, --reboot reboot a list of guests (space delimited dom names)
|
|
58
|
+
-s, --shutdown shutdown a list of guests (space delimited dom names)
|
|
59
|
+
-c, --create start a list of guests (space delimited dom names)
|
|
62
60
|
|
|
63
|
-
|
|
64
|
-
|
|
61
|
+
Actions for all doms:
|
|
62
|
+
WARNING: These options WILL bring down ALL guests!
|
|
65
63
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
64
|
+
--backup-all attempt to shutdown, backup, and start ALL guests
|
|
65
|
+
--reboot-all attempt to shutdown and then start ALL guests
|
|
66
|
+
--shutdown-all attempt to shutdown ALL guests
|
|
67
|
+
--create-all attempt to start ALL guests
|
|
70
68
|
```
|
|
71
69
|
|
|
72
70
|
|
|
@@ -12,49 +12,47 @@ https://git.unturf.com/python/virt-back
|
|
|
12
12
|
**usage**
|
|
13
13
|
|
|
14
14
|
```
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
A backup utility for QEMU, KVM, XEN, and Virtualbox guests. Virt-back is a
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
works great with cron for scheduling outages. Virt-back has been placed in the
|
|
22
|
-
public domain and the latest version may be downloaded here:
|
|
15
|
+
virt-back --help
|
|
16
|
+
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]
|
|
17
|
+
|
|
18
|
+
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
|
|
19
|
+
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:
|
|
20
|
+
|
|
23
21
|
https://git.unturf.com/python/virt-back
|
|
24
22
|
|
|
25
|
-
|
|
23
|
+
options:
|
|
26
24
|
-h, --help show this help message and exit
|
|
27
25
|
-q, --quiet prevent output to stdout
|
|
28
26
|
-d, --date append date to tar filename [default: no date]
|
|
29
27
|
-g, --no-gzip do not gzip the resulting tar file
|
|
30
|
-
-a amount, --retention
|
|
28
|
+
-a amount, --retention amount
|
|
31
29
|
backups to retain [default: 3]
|
|
32
|
-
-p 'PATH', --path
|
|
30
|
+
-p 'PATH', --path 'PATH'
|
|
33
31
|
backup path [default: '/KVMBACK']
|
|
34
|
-
-u 'URI', --uri
|
|
32
|
+
-u 'URI', --uri 'URI'
|
|
35
33
|
optional hypervisor uri
|
|
36
34
|
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
Actions for info testing:
|
|
36
|
+
These options display info or test a list of guests.
|
|
39
37
|
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
-i, --info info/test a list of guests (space delimited dom names)
|
|
39
|
+
--info-all attempt to show info on ALL guests
|
|
42
40
|
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
Actions for a list of dom names:
|
|
42
|
+
WARNING: These options WILL bring down guests!
|
|
45
43
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
44
|
+
-b, --backup backup a list of guests (space delimited dom names)
|
|
45
|
+
-r, --reboot reboot a list of guests (space delimited dom names)
|
|
46
|
+
-s, --shutdown shutdown a list of guests (space delimited dom names)
|
|
47
|
+
-c, --create start a list of guests (space delimited dom names)
|
|
50
48
|
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
Actions for all doms:
|
|
50
|
+
WARNING: These options WILL bring down ALL guests!
|
|
53
51
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
52
|
+
--backup-all attempt to shutdown, backup, and start ALL guests
|
|
53
|
+
--reboot-all attempt to shutdown and then start ALL guests
|
|
54
|
+
--shutdown-all attempt to shutdown ALL guests
|
|
55
|
+
--create-all attempt to start ALL guests
|
|
58
56
|
```
|
|
59
57
|
|
|
60
58
|
|
|
@@ -7,7 +7,7 @@ with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8"
|
|
|
7
7
|
|
|
8
8
|
setup(
|
|
9
9
|
name="virt-back",
|
|
10
|
-
version="0.2.
|
|
10
|
+
version="0.2.4",
|
|
11
11
|
description="virt-back: A backup utility for QEMU, KVM, XEN, and Virtualbox guests",
|
|
12
12
|
keywords="backup virtual hypervisor QEMU KVM XEN Virtualbox",
|
|
13
13
|
long_description=long_description,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: virt-back
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: virt-back: A backup utility for QEMU, KVM, XEN, and Virtualbox guests
|
|
5
5
|
Home-page: https://git.unturf.com/python/virt-back
|
|
6
6
|
Author: Russell Ballestrini
|
|
@@ -24,49 +24,47 @@ https://git.unturf.com/python/virt-back
|
|
|
24
24
|
**usage**
|
|
25
25
|
|
|
26
26
|
```
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
A backup utility for QEMU, KVM, XEN, and Virtualbox guests. Virt-back is a
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
works great with cron for scheduling outages. Virt-back has been placed in the
|
|
34
|
-
public domain and the latest version may be downloaded here:
|
|
27
|
+
virt-back --help
|
|
28
|
+
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]
|
|
29
|
+
|
|
30
|
+
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
|
|
31
|
+
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:
|
|
32
|
+
|
|
35
33
|
https://git.unturf.com/python/virt-back
|
|
36
34
|
|
|
37
|
-
|
|
35
|
+
options:
|
|
38
36
|
-h, --help show this help message and exit
|
|
39
37
|
-q, --quiet prevent output to stdout
|
|
40
38
|
-d, --date append date to tar filename [default: no date]
|
|
41
39
|
-g, --no-gzip do not gzip the resulting tar file
|
|
42
|
-
-a amount, --retention
|
|
40
|
+
-a amount, --retention amount
|
|
43
41
|
backups to retain [default: 3]
|
|
44
|
-
-p 'PATH', --path
|
|
42
|
+
-p 'PATH', --path 'PATH'
|
|
45
43
|
backup path [default: '/KVMBACK']
|
|
46
|
-
-u 'URI', --uri
|
|
44
|
+
-u 'URI', --uri 'URI'
|
|
47
45
|
optional hypervisor uri
|
|
48
46
|
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
Actions for info testing:
|
|
48
|
+
These options display info or test a list of guests.
|
|
51
49
|
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
-i, --info info/test a list of guests (space delimited dom names)
|
|
51
|
+
--info-all attempt to show info on ALL guests
|
|
54
52
|
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
Actions for a list of dom names:
|
|
54
|
+
WARNING: These options WILL bring down guests!
|
|
57
55
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
56
|
+
-b, --backup backup a list of guests (space delimited dom names)
|
|
57
|
+
-r, --reboot reboot a list of guests (space delimited dom names)
|
|
58
|
+
-s, --shutdown shutdown a list of guests (space delimited dom names)
|
|
59
|
+
-c, --create start a list of guests (space delimited dom names)
|
|
62
60
|
|
|
63
|
-
|
|
64
|
-
|
|
61
|
+
Actions for all doms:
|
|
62
|
+
WARNING: These options WILL bring down ALL guests!
|
|
65
63
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
64
|
+
--backup-all attempt to shutdown, backup, and start ALL guests
|
|
65
|
+
--reboot-all attempt to shutdown and then start ALL guests
|
|
66
|
+
--shutdown-all attempt to shutdown ALL guests
|
|
67
|
+
--create-all attempt to start ALL guests
|
|
70
68
|
```
|
|
71
69
|
|
|
72
70
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|