Exemplo n.º 1
0
 def handle(self, *labels, **options):
     manager = BackupManager()
     print manager.make_backup()
Exemplo n.º 2
0
def make_backup():
	from staff.backup import BackupManager
	manager = BackupManager()
	manager.make_backup()
Exemplo n.º 3
0
def export_active_users():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.export_active_users()
Exemplo n.º 4
0
def export_active_users():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.export_active_users()
Exemplo n.º 5
0
 def handle(self, *labels, **options):
     manager = BackupManager()
     manager.export_active_users()
Exemplo n.º 6
0
def make_backup():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.make_backup()
Exemplo n.º 7
0
	def handle(self, *labels, **options):
		manager = BackupManager()
		print manager.make_backup()
Exemplo n.º 8
0
 def handle(self, *labels, **options):
     backup_file = options['backup_file'][0]
     manager = BackupManager()
     manager.restore_backup(backup_file)
Exemplo n.º 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])
Exemplo n.º 10
0
 def handle(self, *labels, **options):
     backup_file = options['backup_file'][0]
     manager = BackupManager()
     manager.restore_backup(backup_file)
Exemplo n.º 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])