diff options
Diffstat (limited to 'ca/rpki-manage')
-rwxr-xr-x | ca/rpki-manage | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/ca/rpki-manage b/ca/rpki-manage deleted file mode 100755 index 16d0990d..00000000 --- a/ca/rpki-manage +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python - -import os - -# django-admin seems to have problems creating the superuser account when -# $LANG is unset or is set to something totally incompatible with UTF-8. - -if os.environ.get("LANG") in (None, "", "C"): - os.environ["LANG"] = "en_US.UTF-8" - -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "rpki.django_settings.gui") - -from django.core.management import execute_from_command_line - -execute_from_command_line() |