Beispiel #1
0
    def create_backup(self, context, backup_id):
        """
        Entry point for initiating a backup for this guest agents db instance.
        The call currently blocks until the backup is complete or errors. If
        device_path is specified, it will be mounted based to a point specified
        in configuration.

        :param backup_id: the db instance id of the backup task
        """
        backup.backup(context, backup_id)
Beispiel #2
0
    def create_backup(self, context, backup_info):
        """
        Entry point for initiating a backup for this instance.
        The call currently blocks guestagent until the backup is finished.

        :param backup_info: a dictionary containing the db instance id of the
                            backup task, location, type, and other data.
        """

        with EndNotification(context):
            backup.backup(context, backup_info)
Beispiel #3
0
    def create_backup(self, context, backup_info):
        """
        Entry point for initiating a backup for this guest agents db instance.
        The call currently blocks until the backup is complete or errors. If
        device_path is specified, it will be mounted based to a point specified
        in configuration.

        :param backup_info: a dictionary containing the db instance id of the
                            backup task, location, type, and other data.
        """
        backup.backup(context, backup_info)
Beispiel #4
0
    def create_backup(self, context, backup_info):
        """
        Entry point for initiating a backup for this instance.
        The call currently blocks guestagent until the backup is finished.

        :param backup_info: a dictionary containing the db instance id of the
                            backup task, location, type, and other data.
        """

        with EndNotification(context):
            backup.backup(context, backup_info)
Beispiel #5
0
    def create_backup(self, context, backup_info):
        """
        Entry point for initiating a backup for this guest agents db instance.
        The call currently blocks until the backup is complete or errors. If
        device_path is specified, it will be mounted based to a point specified
        in configuration.

        :param backup_info: a dictionary containing the db instance id of the
                            backup task, location, type, and other data.
        """
        with EndNotification(context):
            backup.backup(context, backup_info)
Beispiel #6
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     backup.backup(context, backup_info)
Beispiel #7
0
 def create_backup(self, context, backup_info):
     backup.backup(context, backup_info)
Beispiel #8
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     backup.backup(context, backup_info)
Beispiel #9
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     backup.backup(context, backup_info)
Beispiel #10
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         backup.backup(context, backup_info)
Beispiel #11
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     with EndNotification(context):
         backup.backup(context, backup_info)
Beispiel #12
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         self.enable_backups()
         backup.backup(context, backup_info)
Beispiel #13
0
 def create_backup(self, context, backup_info):
     """Create a backup of the database."""
     LOG.debug("Creating backup.")
     with EndNotification(context):
         backup.backup(context, backup_info)
Beispiel #14
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         backup.backup(context, backup_info)
Beispiel #15
0
 def create_backup(self, context, backup_info):
     """Create a backup of the database."""
     LOG.debug("Creating backup.")
     backup.backup(context, backup_info)
Beispiel #16
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     with EndNotification(context):
         backup.backup(context, backup_info)
Beispiel #17
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup for CouchDB.")
     backup.backup(context, backup_info)
Beispiel #18
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     with EndNotification(context):
         backup.backup(context, backup_info)
Beispiel #19
0
 def create_backup(self, context, backup_info):
     backup.backup(context, backup_info)
Beispiel #20
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         self.enable_backups()
         backup.backup(context, backup_info)
Beispiel #21
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     with EndNotification(context):
         backup.backup(context, backup_info)
Beispiel #22
0
 def create_backup(self, context, backup_info):
     """Create a backup of the database."""
     LOG.debug("Creating backup.")
     with EndNotification(context):
         backup.backup(context, backup_info)
Beispiel #23
0
 def create_backup(self, context, backup_info):
     """ invokes the k2hdkc backup implementation
     """
     with EndNotification(context):
         backup.backup(context, backup_info)