Commit 50ea8cd0 by Michael DeHaan

Merge pull request #4406 from dominis/devel

cobbler inventory bugfix
parents 0e55bd89 51ef343e
......@@ -96,6 +96,10 @@ if len(sys.argv) == 2 and (sys.argv[1] == '--list'):
# first DNS name but no further DNS names
groups[cls].append(dns_name)
# handle hosts without mgmt_classes
if not classes:
groups['ungrouped'].append(dns_name)
print json.dumps(groups)
sys.exit(0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment