예제 #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
파일: manager.py 프로젝트: magictour/trove
 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)