Files

24 lines
577 B
Python
Raw Permalink Normal View History

import atexit
def shutdown_function():
from horilla_backup.models import GoogleDriveBackup, LocalBackup
2025-02-14 10:01:07 +05:30
try:
if GoogleDriveBackup.objects.exists():
google_drive_backup = GoogleDriveBackup.objects.first()
google_drive_backup.active = False
google_drive_backup.save()
if LocalBackup.objects.exists():
local_backup = LocalBackup.objects.first()
local_backup.active = False
local_backup.save()
except:
pass
2025-02-14 10:01:07 +05:30
try:
atexit.register(shutdown_function)
except:
2025-02-14 10:01:07 +05:30
pass