From 6c38c3128afd8542d086ba998494e02872781b77 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 25 Sep 2007 17:42:04 -0400 Subject: Renaming configuration file to 'minion.conf' and changing setup.py and specfiles to understand. --- setup.py | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 4c34d9a..9b3ac7c 100644 --- a/setup.py +++ b/setup.py @@ -18,20 +18,8 @@ if __name__ == "__main__": manpath = "share/man/man1/" etcpath = "/etc/%s" % NAME - etcpathdb = "/etc/%s/db" % NAME - wwwpath = "/var/www/%s" % NAME initpath = "/etc/init.d/" logpath = "/var/log/%s/" % NAME - logpathdb = "/var/log/%s/db/" % NAME - settingspath = "/var/lib/%s/" % NAME - migraterepopath = "/var/lib/%s/db/" % NAME - schemapath = "/usr/share/%s/db_schema/" % NAME - upgradepath = schemapath + "upgrade/" - puppetpath = "/usr/share/%s/puppet-config/" % NAME - manifestpath = "/etc/puppet/manifests/" - profiletemplatepath = "/usr/share/%s/profile-template/" % NAME - profilespath = "/var/lib/%s/profiles/" % NAME - queuedprofilespath = "/var/lib/%s/profiles/queued/" % NAME setup( name="%s" % NAME, version = VERSION, @@ -53,12 +41,8 @@ if __name__ == "__main__": ], data_files = [(initpath, ["init-scripts/funcd", "init-scripts/certmaster"]), (etcpath, ["etc/minion.conf","etc/certmaster.conf"]), - (etcpathdb, []), - (logpath, []), - (logpathdb, []), - (migraterepopath, []), - (profilespath, []), - (queuedprofilespath, [])], + (logpath, []) + ], description = SHORT_DESC, long_description = LONG_DESC ) -- cgit