remove a lot of deprecated files ;
[monitor.git] / phpconfig.py
diff --git a/phpconfig.py b/phpconfig.py
deleted file mode 100755 (executable)
index 2848c75..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/python
-
-import config
-
-print "<?php"
-for attr in dir(config):
-       val = config.__getattribute__(attr)
-       if attr[0].isupper() and attr[1].isupper():
-               print "define('%s', '%s'); " % (attr, val)
-print "?>"