From d5295e872079daa619ffeb24c881be6655716ef1 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 14 Sep 2007 18:40:21 -0400 Subject: 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. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit