示例#1
0
文件: mysql.py 项目: ReVolly/trove
    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)
示例#2
0
文件: manager.py 项目: wffeige/trove
    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)
示例#3
0
文件: manager.py 项目: vdialani/trove
    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)
示例#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)
示例#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)
示例#6
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     backup.backup(context, backup_info)
示例#7
0
 def create_backup(self, context, backup_info):
     backup.backup(context, backup_info)
示例#8
0
文件: manager.py 项目: edwardt/trove
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     backup.backup(context, backup_info)
示例#9
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     backup.backup(context, backup_info)
示例#10
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         backup.backup(context, backup_info)
示例#11
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     with EndNotification(context):
         backup.backup(context, backup_info)
示例#12
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         self.enable_backups()
         backup.backup(context, backup_info)
示例#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)
示例#14
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         backup.backup(context, backup_info)
示例#15
0
 def create_backup(self, context, backup_info):
     """Create a backup of the database."""
     LOG.debug("Creating backup.")
     backup.backup(context, backup_info)
示例#16
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup.")
     with EndNotification(context):
         backup.backup(context, backup_info)
示例#17
0
 def create_backup(self, context, backup_info):
     LOG.debug("Creating backup for CouchDB.")
     backup.backup(context, backup_info)
示例#18
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     with EndNotification(context):
         backup.backup(context, backup_info)
示例#19
0
 def create_backup(self, context, backup_info):
     backup.backup(context, backup_info)
示例#20
0
 def create_backup(self, context, backup_info):
     with EndNotification(context):
         self.enable_backups()
         backup.backup(context, backup_info)
示例#21
0
 def create_backup(self, context, backup_info):
     """
     Backup all couchbase buckets and their documents.
     """
     with EndNotification(context):
         backup.backup(context, backup_info)
示例#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)
示例#23
0
 def create_backup(self, context, backup_info):
     """ invokes the k2hdkc backup implementation
     """
     with EndNotification(context):
         backup.backup(context, backup_info)