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