summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-06-12 17:30:54 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-06-12 17:30:54 -0400
commite83d677c82a0ad728501d0fa2f6df8737980a68c (patch)
tree3984bac8c1a61a0d91199b5af32c8d0b49e52d20
parentd92ed20f0cd6ae40cca561c3ed7c34561693827b (diff)
downloadthird_party-cobbler-e83d677c82a0ad728501d0fa2f6df8737980a68c.tar.gz
third_party-cobbler-e83d677c82a0ad728501d0fa2f6df8737980a68c.tar.xz
third_party-cobbler-e83d677c82a0ad728501d0fa2f6df8737980a68c.zip
random FIXME cleanup
-rw-r--r--cobbler/action_import.py6
-rw-r--r--cobbler/action_reposync.py1
-rw-r--r--cobbler/item.py4
3 files changed, 2 insertions, 9 deletions
diff --git a/cobbler/action_import.py b/cobbler/action_import.py
index 3275e07..c906bdc 100644
--- a/cobbler/action_import.py
+++ b/cobbler/action_import.py
@@ -301,10 +301,8 @@ class Importer:
try:
- # store the location of the RPMs in the distro object.
- # this is so sync can find it later.
- # FIXME: can't really do that as there right be more than one.
-
+ # store the yum configs on the filesystem so we can use them later.
+ # and configure them in the kickstart post, etc
counter = len(distro.source_repos)
diff --git a/cobbler/action_reposync.py b/cobbler/action_reposync.py
index 9ed8f47..94c54a4 100644
--- a/cobbler/action_reposync.py
+++ b/cobbler/action_reposync.py
@@ -73,7 +73,6 @@ class RepoSync:
"""
Handle copying of http:// and ftp:// repos.
- FIXME: support for mirrorlist?
"""
# warn about not having yum-utils. We don't want to require it in the package because
diff --git a/cobbler/item.py b/cobbler/item.py
index 45b58ff..af46def 100644
--- a/cobbler/item.py
+++ b/cobbler/item.py
@@ -38,8 +38,6 @@ class Item(serializable.Serializable):
def get_children(self,sorted=True):
"""
Get direct children of this object.
-
- FIXME: testing
"""
keys = self.children.keys()
if sorted:
@@ -53,8 +51,6 @@ class Item(serializable.Serializable):
"""
Get objects that depend on this object, i.e. those that
would be affected by a cascading delete, etc.
-
- FIXME: testing
"""
results = []
kids = self.get_children(sorted=False)