Misc s/func/certmaster/ replacements
authorMichael DeHaan <mdehaan@redhat.com>
Thu, 7 Feb 2008 18:30:51 +0000 (13:30 -0500)
committerMichael DeHaan <mdehaan@redhat.com>
Thu, 7 Feb 2008 18:30:51 +0000 (13:30 -0500)
init-scripts/certmaster
scripts/certmaster
scripts/certmaster-ca
scripts/certmaster-request

index 819ba0d..95c16fc 100755 (executable)
 # Default-Start: 3 4 5
 # Default-Stop: 0 1 2 6
 # Short-Description: certificate master for Fedora Unified Network Control 'master server only'
-# Description: certificate master to sign/manage ca/cert infrastructure for func
+# Description: certificate master to sign/manage ca/cert infrastructure
 ### END INIT INFO
 
 # chkconfig header
 
 # chkconfig: - 98 99 
-# description:  certificate master to sign/manage ca/cert infrastructure for func
+# description:  certificate master to sign/manage ca/cert infrastructure
 #
 # processname: /usr/bin/certmaster
 
index d5f677d..d9e99fd 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 
-from func import certmaster
+from certmaster import certmaster
 
 import sys
 
index b3e844a..a504d20 100755 (executable)
@@ -9,9 +9,9 @@ import sys
 import glob
 import os
 
-import func
-import func.certs
-import func.certmaster
+import certmaster
+import certmaster.certs
+import certmaster.certmaster
 
 
 
@@ -46,7 +46,7 @@ def main(args):
         errorprint('Must be root to run certmaster-ca')
         return 1
         
-    cm = func.certmaster.CertMaster()
+    cm = certmaster.certmaster.CertMaster()
     
     (opts, args) = parseargs(args)
 
index 3d807bd..c731fdb 100755 (executable)
@@ -4,7 +4,9 @@
 import sys
 import distutils.sysconfig
 
-from func.minion import server
+print "This app is not implemented yet!"
 
-if __name__ == "__main__":
-    server.main(sys.argv)
+# from func.minion import server
+#
+#if __name__ == "__main__":
+#    server.main(sys.argv)