summaryrefslogtreecommitdiffstats
path: root/admportal/shell/getAdmPortalProp.py
diff options
context:
space:
mode:
Diffstat (limited to 'admportal/shell/getAdmPortalProp.py')
-rwxr-xr-xadmportal/shell/getAdmPortalProp.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/admportal/shell/getAdmPortalProp.py b/admportal/shell/getAdmPortalProp.py
deleted file mode 100755
index 2e0ea797..00000000
--- a/admportal/shell/getAdmPortalProp.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/python
-
-import json
-import sys
-import os
-
-propfile = os.getenv('SDNC_CONFIG_DIR') + '/admportal.json'
-
-from pprint import pprint
-
-with open(propfile) as data_file:
- data = json.load(data_file)
-pprint( str(data[sys.argv[1]]))