aboutsummaryrefslogtreecommitdiff
path: root/ca/rpki-manage
diff options
context:
space:
mode:
Diffstat (limited to 'ca/rpki-manage')
-rwxr-xr-xca/rpki-manage13
1 files changed, 0 insertions, 13 deletions
diff --git a/ca/rpki-manage b/ca/rpki-manage
deleted file mode 100755
index 0d581ce9..00000000
--- a/ca/rpki-manage
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env python
-
-import os
-from django.core.management import execute_from_command_line
-
-# 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['DJANGO_SETTINGS_MODULE'] = 'rpki.gui.default_settings'
-
-execute_from_command_line()