Example #1
0
 def handle(self, *labels, **options):
     manager = BackupManager()
     print manager.make_backup()
Example #2
0
def make_backup():
	from staff.backup import BackupManager
	manager = BackupManager()
	manager.make_backup()
Example #3
0
def export_active_users():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.export_active_users()
Example #4
0
def export_active_users():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.export_active_users()
Example #5
0
 def handle(self, *labels, **options):
     manager = BackupManager()
     manager.export_active_users()
Example #6
0
def make_backup():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.make_backup()
Example #7
0
	def handle(self, *labels, **options):
		manager = BackupManager()
		print manager.make_backup()
Example #8
0
 def handle(self, *labels, **options):
     backup_file = options['backup_file'][0]
     manager = BackupManager()
     manager.restore_backup(backup_file)
Example #9
0
 def handle(self, *labels, **options):
     if not labels or len(labels) != 1:
         raise CommandError('Enter one argument, the path to the backup tar file.')
     manager = BackupManager()
     manager.restore_backup(labels[0])
Example #10
0
 def handle(self, *labels, **options):
     backup_file = options['backup_file'][0]
     manager = BackupManager()
     manager.restore_backup(backup_file)
Example #11
0
 def handle(self, *labels, **options):
     if not labels or len(labels) != 1:
         raise CommandError('Enter one argument, the path to the backup tar file.')
     manager = BackupManager()
     manager.restore_backup(labels[0])