diff options
author | James Cammarata <jimi@sngx.net> | 2013-09-17 21:02:37 +0200 |
---|---|---|
committer | James Cammarata <jimi@sngx.net> | 2013-09-17 21:02:37 +0200 |
commit | 1a1859a20374b1381bd60c2cf522e2c3ded686a6 (patch) | |
tree | dbdf73e8df9c01b1fc1797da04a445f3ff865756 /setup.py | |
parent | AC-463 Latest changes automating refresh button on Projects and Jobs tab. Cle... (diff) | |
download | awx-1a1859a20374b1381bd60c2cf522e2c3ded686a6.tar.xz awx-1a1859a20374b1381bd60c2cf522e2c3ded686a6.zip |
Remove settings.py from the debian/rpm packaging
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -19,10 +19,8 @@ etcpath = "/etc/awx" homedir = "/var/lib/awx" if os.path.exists("/etc/debian_version"): webconfig = "/etc/apache2/conf.d" - settingsconf = "config/deb/settings.py" else: webconfig = "/etc/httpd/conf.d" - settingsconf = "config/rpm/settings.py" ##################################################################### # Helper Functions @@ -148,7 +146,6 @@ setup( ("%s" % homedir, ["config/wsgi.py", "awx/static/favicon.ico", ]), - ("%s" % etcpath, [settingsconf,]), ("%s" % webconfig, ["config/awx.conf","config/awx-plain.conf"]), ] ), |