summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-14 18:40:21 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-14 18:40:21 -0400
commitd5295e872079daa619ffeb24c881be6655716ef1 (patch)
treece227491bd7537b6d197afd1520a873c15aa3918 /Makefile
parent0904cdd86e4eae3d96db0fdec8133d4bd99dc7d6 (diff)
downloadthird_party-cobbler-d5295e872079daa619ffeb24c881be6655716ef1.tar.gz
third_party-cobbler-d5295e872079daa619ffeb24c881be6655716ef1.tar.xz
third_party-cobbler-d5295e872079daa619ffeb24c881be6655716ef1.zip
Kickstart listing is back in the WUI, with a backend method to get the exhaustive list.
Edits to come. Also added a "make devinstall" which is like "make install" but doesn't overwrite your settings file with the default values.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7a92fe9..85189d3 100644
--- a/Makefile
+++ b/Makefile
@@ -16,13 +16,17 @@ manpage:
test: install
python tests/tests.py
-rm -rf /tmp/_cobbler-*
-
build: clean updatewui messages
python setup.py build -f
install: clean manpage
python setup.py install -f
+devinstall:
+ cp /var/lib/cobbler/settings /tmp/cobbler_settings
+ make install
+ cp /tmp/cobbler_settings /var/lib/cobbler/settings
+
sdist: clean messages updatewui
python setup.py sdist