summaryrefslogtreecommitdiffstats
path: root/cobbler/action_import.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-10-16 18:21:26 -0400
committerJim Meyering <jim@meyering.net>2006-10-16 18:21:26 -0400
commit45c168c57d0826aa4c22b566cd3ae9d445bdf6ae (patch)
tree3cea18f85f6039bc1bc4edb4c7e0988b2e863d74 /cobbler/action_import.py
parent0572c1c1bdb716d91fdaa305d14e70fe0a8fda06 (diff)
downloadthird_party-cobbler-45c168c57d0826aa4c22b566cd3ae9d445bdf6ae.tar.gz
third_party-cobbler-45c168c57d0826aa4c22b566cd3ae9d445bdf6ae.tar.xz
third_party-cobbler-45c168c57d0826aa4c22b566cd3ae9d445bdf6ae.zip
Output simplification for humans
Diffstat (limited to 'cobbler/action_import.py')
-rw-r--r--cobbler/action_import.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/cobbler/action_import.py b/cobbler/action_import.py
index d0b65db..bcc6873 100644
--- a/cobbler/action_import.py
+++ b/cobbler/action_import.py
@@ -141,12 +141,11 @@ class Importer:
distro = self.distros.find(profile.name)
kpath = distro.kernel
if not kpath.startswith("/var/www/cobbler"):
- print "*** CAN'T GUESS (kpath): %s" % kpath
+ print "*** CAN'T GUESS WHAT KICKSTART TO ASSIGN: %s" % kpath
continue
for entry in MATCH_LIST:
(part, kickstart) = entry
if kpath.find(part) != -1:
- print "*** CONSIDERING: %s" % kickstart
if os.path.exists(kickstart):
print "*** ASSIGNING kickstart: %s" % kickstart
profile.set_kickstart(kickstart)
@@ -165,7 +164,7 @@ class Importer:
print "%s" % base
tree = "tree=http://%s/%s" % (self.settings.server, base)
print "%s" % tree
- print "*** ASSIGNING KS META = %s" % tree
+ print "*** ASSIGNING KICKSTART TREE = %s" % tree
profile.set_ksmeta(tree)
def walker(self,arg,dirname,fnames):