Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 6
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     backup.backup(context, backup_info)
Ejemplo n.º 7
0
 def create_backup(self, context, backup_info):
     backup.backup(context, backup_info)
Ejemplo n.º 8
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     backup.backup(context, backup_info)
Ejemplo n.º 9
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     backup.backup(context, backup_info)
Ejemplo n.º 10
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         backup.backup(context, backup_info)
Ejemplo n.º 11
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     with EndNotification(context):
         backup.backup(context, backup_info)
Ejemplo n.º 12
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         self.enable_backups()
         backup.backup(context, backup_info)
Ejemplo n.º 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)
Ejemplo n.º 14
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         backup.backup(context, backup_info)
Ejemplo n.º 15
0
 def create_backup(self, context, backup_info):
     """Create a backup of the database."""
     LOG.debug("Creating backup.")
     backup.backup(context, backup_info)
Ejemplo n.º 16
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     with EndNotification(context):
         backup.backup(context, backup_info)
Ejemplo n.º 17
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup for CouchDB.")
     backup.backup(context, backup_info)
Ejemplo n.º 18
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     with EndNotification(context):
         backup.backup(context, backup_info)
Ejemplo n.º 19
0
 def create_backup(self, context, backup_info):
     backup.backup(context, backup_info)
Ejemplo n.º 20
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         self.enable_backups()
         backup.backup(context, backup_info)
Ejemplo n.º 21
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     with EndNotification(context):
         backup.backup(context, backup_info)
Ejemplo n.º 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)
Ejemplo n.º 23
0
 def create_backup(self, context, backup_info):
     """ invokes the k2hdkc backup implementation
     """
     with EndNotification(context):
         backup.backup(context, backup_info)