This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
tsm:tsm_hyperv [2023/01/03 10:57] manu created |
tsm:tsm_hyperv [2023/01/03 11:00] (current) manu |
||
|---|---|---|---|
| Line 4: | Line 4: | ||
| Example of schedules (on SP server) | Example of schedules (on SP server) | ||
| - | define schedule hyperv_domain_name schedule_name description=schedule_description action=backup subaction=VM | + | <code> |
| - | starttime=NOW+00:10 schedstyle=Classic period=1 perunits=Weeks durunits=minutes duration=10 options='-vmbackuptype=hypervfull -mode=IFIncremental -domain.vmfull="all-vm"' | + | define schedule hyperv_domain_name schedule_name description=schedule_description action=backup subaction=VM |
| + | starttime=NOW+00:10 schedstyle=Classic period=1 perunits=Weeks durunits=minutes duration=10 | ||
| + | options='-vmbackuptype=hypervfull -mode=IFIncremental -domain.vmfull="all-vm"' | ||
| + | </code> | ||
| + | |||
| + | Backup all VM under a single node_name | ||
| + | <code> | ||
| + | -asnodename=clustername_hv_tgt | ||
| + | </code> | ||
| + | |||
| + | Backup all VM except TestVM1 | ||
| + | <code> | ||
| + | -domain.vmfull="all-vm;-vm=TestVM1" | ||
| + | </code> | ||
| + | |||
| + | Backup a single VM | ||
| + | <code> | ||
| + | -domain.vmfull="vm=TestVM1" | ||
| + | </code> | ||
| + | |||
| + | |||