On Wed, Aug 30, 2017 at 3:57 PM, Ishani
wrote:
> - On Aug 30, 2017, at 9:51 AM, Fam Zheng f...@redhat.com wrote:
>
>> On Tue, 08/29 22:13, Ishani Chugh wrote:
>>> +class BackupTool(object):
>>> +"""BackupTool Class"""
>>> +def __init__(self, config_file=os.path.expanduser('~') +
>>> +
- On Aug 30, 2017, at 9:51 AM, Fam Zheng f...@redhat.com wrote:
> On Tue, 08/29 22:13, Ishani Chugh wrote:
>> +class BackupTool(object):
>> +"""BackupTool Class"""
>> +def __init__(self, config_file=os.path.expanduser('~') +
>> + '/.config/qemu/qemu-backup-config'):
>
On Tue, 08/29 22:13, Ishani Chugh wrote:
> +class BackupTool(object):
> +"""BackupTool Class"""
> +def __init__(self, config_file=os.path.expanduser('~') +
> + '/.config/qemu/qemu-backup-config'):
> +if "QEMU_BACKUP_CONFIG" in os.environ:
> +self.config_f
On Tue, 08/29 22:13, Ishani Chugh wrote:
> +def _restore(self, guest_name):
> +"""
> +Prints Steps to perform restore operation
> +"""
> +if guest_name not in self.config.sections():
> +print("Cannot find specified guest", file=sys.stderr)
> +
qemu-backup will be a command-line tool for performing full and
incremental disk backups on running VMs. It is intended as a
reference implementation for management stack and backup developers
to see QEMU's backup features in action. The tool writes details of
guest in a configuration file and the