summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in1
-rw-r--r--cobbler.spec2
-rw-r--r--setup.py5
3 files changed, 6 insertions, 2 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 637e88d..7b7eac6 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,2 +1,3 @@
+include dhcp.template
include cobbler.1.gz
include COPYING AUTHORS README CHANGELOG NEWS
diff --git a/cobbler.spec b/cobbler.spec
index d085cad..3a27e14 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -38,6 +38,8 @@ rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_bindir}/cobbler
+%dir /etc/cobbler
+/etc/cobbler/dhcp.template
%dir %{python_sitelib}/cobbler
%dir %{python_sitelib}/cobbler/yaml
%{python_sitelib}/cobbler/*.py*
diff --git a/setup.py b/setup.py
index 5456a70..9779619 100644
--- a/setup.py
+++ b/setup.py
@@ -14,18 +14,19 @@ Cobbler is a command line tool for simplified configuration of boot/provisioning
if __name__ == "__main__":
# docspath="share/doc/koan-%s/" % VERSION
manpath="share/man/man1/"
+ etcpath="/etc/cobbler/"
setup(
name="cobbler",
version = VERSION,
author = "Michael DeHaan",
author_email = "mdehaan@redhat.com",
- # FIXME: lame, this should point to a real cobbler webpage
- url = "http://bugzilla.redhat.com",
+ url = "http://et.redhat.com/",
license = "GPL",
packages = ["cobbler","cobbler/yaml"],
scripts = ["cobbler/cobbler"],
data_files = [
# (docspath, ['README']),
+ (etcpath, ['dhcp.template']),
(manpath, ['cobbler.1.gz'])
],
description = SHORT_DESC,