示例#1
0
 def handle(self, *labels, **options):
     manager = BackupManager()
     print manager.make_backup()
示例#2
0
文件: tasks.py 项目: githubber/nadine
def make_backup():
	from staff.backup import BackupManager
	manager = BackupManager()
	manager.make_backup()
示例#3
0
def export_active_users():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.export_active_users()
示例#4
0
文件: tasks.py 项目: rtt-mmk/nadine
def export_active_users():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.export_active_users()
示例#5
0
 def handle(self, *labels, **options):
     manager = BackupManager()
     manager.export_active_users()
示例#6
0
def make_backup():
    from staff.backup import BackupManager
    manager = BackupManager()
    manager.make_backup()
示例#7
0
	def handle(self, *labels, **options):
		manager = BackupManager()
		print manager.make_backup()
示例#8
0
 def handle(self, *labels, **options):
     backup_file = options['backup_file'][0]
     manager = BackupManager()
     manager.restore_backup(backup_file)
示例#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])
示例#10
0
 def handle(self, *labels, **options):
     backup_file = options['backup_file'][0]
     manager = BackupManager()
     manager.restore_backup(backup_file)
示例#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])