Console OpenVPN, développée en Django
Permet de gérer des instances, serveurs, et comptes OpenVPN
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env python |
|
|
|
""" |
|
Daily cleanup job. |
|
|
|
Can be run as a cronjob to clean out old data from the database (only expired |
|
sessions at the moment). |
|
""" |
|
|
|
from django.core import management |
|
|
|
if __name__ == "__main__": |
|
management.call_command('cleanup')
|
|
|