]> git.proxmox.com Git - pve-docs.git/commitdiff
add qmrestore man page
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 8 Apr 2016 05:30:48 +0000 (07:30 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 8 Apr 2016 05:30:48 +0000 (07:30 +0200)
Makefile
index.adoc
pve-admin-guide.adoc
pve-doc-generator.mk
qmrestore.1-synopsis.adoc [new file with mode: 0644]
qmrestore.adoc [new file with mode: 0644]

index f6f176148a4ad15fc971368b945c41efb4c21498..5c77b85eef43fb7d7d0c8f68ac0ae3e010d0f4f4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -77,6 +77,7 @@ PVE_ADMIN_GUIDE_SOURCES=              \
        ${PVECM_MAN1_SOURCES}           \
        ${PVEUM_MAN1_SOURCES}           \
        ${QM_MAN1_SOURCES}              \
        ${PVECM_MAN1_SOURCES}           \
        ${PVEUM_MAN1_SOURCES}           \
        ${QM_MAN1_SOURCES}              \
+       ${QMRESTORE_MAN1_SOURCES}       \
        ${PVEAM_SOURCES}                \
        ${VZDUMP_SOURCES}               \
        ${HA_SOURCES}                   \
        ${PVEAM_SOURCES}                \
        ${VZDUMP_SOURCES}               \
        ${HA_SOURCES}                   \
@@ -125,7 +126,7 @@ all: pve-admin-guide.html
 
 index.html: index.adoc ${PVE_ADMIN_GUIDE_SOURCES}
        $(MAKE) NOVIEW=1 pve-admin-guide.pdf pve-admin-guide.html pve-admin-guide.epub
 
 index.html: index.adoc ${PVE_ADMIN_GUIDE_SOURCES}
        $(MAKE) NOVIEW=1 pve-admin-guide.pdf pve-admin-guide.html pve-admin-guide.epub
-       $(MAKE) NOVIEW=1 pvecm.1.html qm.1.html pct.1.html pveam.1.html pvesm.1.html pveum.1.html vzdump.1.html pve-firewall.8.html ha-manager.1.html datacenter.cfg.5.html vm.conf.5.html pct.conf.5.html
+       $(MAKE) NOVIEW=1 pvecm.1.html qm.1.html qmrestore.1.html pct.1.html pveam.1.html pvesm.1.html pveum.1.html vzdump.1.html pve-firewall.8.html ha-manager.1.html datacenter.cfg.5.html vm.conf.5.html pct.conf.5.html
        asciidoc -a "date=$(shell date)" -a "revnumber=${DOCRELEASE}" index.adoc
        test -n "$${NOVIEW}" || $(BROWSER) index.html &
 
        asciidoc -a "date=$(shell date)" -a "revnumber=${DOCRELEASE}" index.adoc
        test -n "$${NOVIEW}" || $(BROWSER) index.html &
 
index 3ab9710e594c078422328d357d7ac2428f448adc..091fe80cb3516270efd5707b51f890f6adf182bb 100644 (file)
@@ -22,6 +22,7 @@ include::attributes.txt[]
 |===========================================================
 | Command name |Download link
 | qm           | link:qm.1.html[qm.1]
 |===========================================================
 | Command name |Download link
 | qm           | link:qm.1.html[qm.1]
+| qmrestore    | link:qmrestore.1.html[qmrestore.1]
 | pct          | link:pct.1.html[pct.1]
 | pveam        | link:pveam.1.html[pveam.1]
 | pvecm        | link:pvecm.1.html[pvecm.1]
 | pct          | link:pct.1.html[pct.1]
 | pveam        | link:pveam.1.html[pveam.1]
 | pvecm        | link:pvecm.1.html[pvecm.1]
index 5ee319bcbbc40dcdcab3f3fd1bed4f768c6f5ac1..c7ed0ead8eb124119e4d3ae1486cf748c190afae 100644 (file)
@@ -59,6 +59,14 @@ include::qm.1-synopsis.adoc[]
 
 :leveloffset: 0
 
 
 :leveloffset: 0
 
+*qmrestore* - Restore QemuServer 'vzdump' Backups
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+:leveloffset: 1
+include::qmrestore.1-synopsis.adoc[]
+
+:leveloffset: 0
+
 *pct* - Proxmox Container Toolkit
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 *pct* - Proxmox Container Toolkit
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
index cca464b5ea56b42a65cb34bb57bc82205c0ce5fb..f1f21fd62979c147f0ad3a8d0c7c0c27f8a87730 100644 (file)
@@ -48,6 +48,11 @@ QM_MAN1_SOURCES=                     \
        qm.1-synopsis.adoc              \
        ${PVE_COMMON_DOC_SOURCES}
 
        qm.1-synopsis.adoc              \
        ${PVE_COMMON_DOC_SOURCES}
 
+QMRESTORE_MAN1_SOURCES=                        \
+       qmrestore.adoc                  \
+       qmrestore.1-synopsis.adoc       \
+       ${PVE_COMMON_DOC_SOURCES}
+
 PVEUM_MAN1_SOURCES=                    \
        pveum.adoc                      \
        pveum.1-synopsis.adoc           \
 PVEUM_MAN1_SOURCES=                    \
        pveum.adoc                      \
        pveum.1-synopsis.adoc           \
@@ -95,6 +100,10 @@ qm.1: ${QM_MAN1_SOURCES}
        a2x -a docinfo1 -a "manvolnum=1" -a "manversion=Release ${DOCRELEASE}" -f manpage qm.adoc
        test -n "$${NOVIEW}" || man -l $@
 
        a2x -a docinfo1 -a "manvolnum=1" -a "manversion=Release ${DOCRELEASE}" -f manpage qm.adoc
        test -n "$${NOVIEW}" || man -l $@
 
+qmrestore.1: ${QMRESTORE_MAN1_SOURCES}
+       a2x -a docinfo1 -a "manvolnum=1" -a "manversion=Release ${DOCRELEASE}" -f manpage qmrestore.adoc
+       test -n "$${NOVIEW}" || man -l $@
+
 pvecm.1: ${PVECM_MAN1_SOURCES}
        a2x -a docinfo1 -a "manvolnum=1" -a "manversion=Release ${DOCRELEASE}" -f manpage pvecm.adoc
        test -n "$${NOVIEW}" || man -l $@
 pvecm.1: ${PVECM_MAN1_SOURCES}
        a2x -a docinfo1 -a "manvolnum=1" -a "manversion=Release ${DOCRELEASE}" -f manpage pvecm.adoc
        test -n "$${NOVIEW}" || man -l $@
diff --git a/qmrestore.1-synopsis.adoc b/qmrestore.1-synopsis.adoc
new file mode 100644 (file)
index 0000000..b5371f6
--- /dev/null
@@ -0,0 +1,30 @@
+*qmrestore* `help`
+
+*qmrestore* `<archive> <vmid>` `[OPTIONS]`
+
+Restore QemuServer vzdump backups.
+
+`<archive>` `string` ::
+
+The backup file. You can pass '-' to read from standard input.
+
+`<vmid>` `integer (1 - N)` ::
+
+The (unique) ID of the VM.
+
+`-force` `boolean` ::
+
+Allow to overwrite existing VM.
+
+`-pool` `string` ::
+
+Add the VM to the specified pool.
+
+`-storage` `string` ::
+
+Default storage.
+
+`-unique` `boolean` ::
+
+Assign a unique random ethernet address.
+
diff --git a/qmrestore.adoc b/qmrestore.adoc
new file mode 100644 (file)
index 0000000..b3fb53a
--- /dev/null
@@ -0,0 +1,33 @@
+ifdef::manvolnum[]
+PVE({manvolnum})
+================
+include::attributes.txt[]
+
+NAME
+----
+
+qmrestore - Restore QemuServer 'vzdump' Backups
+
+SYNOPSYS
+--------
+
+include::qmrestore.1-synopsis.adoc[]
+
+DESCRIPTION
+-----------
+endif::manvolnum[]
+
+ifndef::manvolnum[]
+Restore Virtual Machines
+========================
+include::attributes.txt[]
+endif::manvolnum[]
+
+
+Restore the QemuServer vzdump backup 'archive' to virtual machine
+'vmid'. Volumes are allocated on the original storage if there is no
+'storage' specified.
+
+ifdef::manvolnum[]
+include::pve-copyright.adoc[]
+endif::manvolnum[]