summaryrefslogtreecommitdiffstats
path: root/cobbler/action_import.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2007-12-20 15:32:52 -0500
committerMichael DeHaan <mdehaan@redhat.com>2007-12-20 15:32:52 -0500
commit6fc697a71cf29ad66b0e2324998c35b0adbdbff9 (patch)
tree73dc42ba39eb818468016c106b7eb1c92eb8c626 /cobbler/action_import.py
parent09c46080ceb1b933c85db6f23621e40854f0972a (diff)
downloadthird_party-cobbler-6fc697a71cf29ad66b0e2324998c35b0adbdbff9.tar.gz
third_party-cobbler-6fc697a71cf29ad66b0e2324998c35b0adbdbff9.tar.xz
third_party-cobbler-6fc697a71cf29ad66b0e2324998c35b0adbdbff9.zip
Rename some templates, remove proxy logic that is not necc. for new performance
plans, remove watcher.py reference
Diffstat (limited to 'cobbler/action_import.py')
-rw-r--r--cobbler/action_import.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cobbler/action_import.py b/cobbler/action_import.py
index d2f2d05..867b950 100644
--- a/cobbler/action_import.py
+++ b/cobbler/action_import.py
@@ -256,12 +256,12 @@ class Importer:
def set_kickstart(self, profile, flavor, major, minor):
if flavor == "fedora":
if major >= 6:
- return profile.set_kickstart("/etc/cobbler/kickstart_fc6.ks")
+ return profile.set_kickstart("/etc/cobbler/sample.ks")
if flavor == "redhat" or flavor == "centos":
if major >= 5:
- return profile.set_kickstart("/etc/cobbler/kickstart_fc6.ks")
+ return profile.set_kickstart("/etc/cobbler/sample.ks")
print _("- using default kickstart file choice")
- return profile.set_kickstart("/etc/cobbler/kickstart_fc5.ks")
+ return profile.set_kickstart("/etc/cobbler/legacy.ks")
# ---------------------------------------------------------------------