From fc335d72bd444bc899b07042b7c11c814259f188 Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Tue, 25 Sep 2007 10:27:06 -0400 Subject: - all the class bits to make the authssl xmlrpc server work - most of it copied and modified from plague - modifications to setup.py to behave with func dir for python sitelib --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index b91f1c6..5948b61 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ NAME = "func" VERSION = open("version", "r+").read().split()[0] SHORT_DESC = "%s remote configuration and management api" % NAME LONG_DESC = """ -A small pluggabe xml-rpc daemon used by %s to implement various web services hooks +A small pluggable xml-rpc daemon used by %s to implement various web services hooks """ % NAME @@ -36,13 +36,12 @@ if __name__ == "__main__": name="%s" % NAME, version = VERSION, author = "Lots", - author_email = "et-mgmt-tools@redhat.com", + author_email = "func-list@redhat.com", url = "https://hosted.fedoraproject.org/projects/func/", license = "GPL", - scripts = ["scripts/funcd", - ], + scripts = ["scripts/funcd", "scripts/certmaster"], # package_data = { '' : ['*.*'] }, - package_dir = {"%s" % NAME: "", + package_dir = {"%s" % NAME: "%s" % NAME, "%s/server" % NAME: "server", "%s/server/modules" % NAME: "modules/", "%s/client" % NAME: "client" -- cgit From fca2c8e36dfec0ced3957ba8f6e62bf62a99c84b Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Tue, 25 Sep 2007 10:30:14 -0400 Subject: - fix spec file for new func python sitelib dir - add certmaster initscript to setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 5948b61..60878c1 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ if __name__ == "__main__": "%s/client" % NAME, "%s/server/modules" % NAME ], - data_files = [(initpath, ["init-scripts/funcd"]), + data_files = [(initpath, ["init-scripts/funcd", "init-scripts/certmaster"]), (etcpath, ["settings",]), (etcpathdb, []), (logpath, []), -- cgit