summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2-reports
diff options
context:
space:
mode:
authorJames Yang <jjyang@mcs.anl.gov>2008-08-06 21:41:53 +0000
committerJames Yang <jjyang@mcs.anl.gov>2008-08-06 21:41:53 +0000
commitfe5285d55f2138413b17a2be38841a64d88bdbea (patch)
treef534349166e8e4ed0563f3a935503db1737ed32b /src/sbin/bcfg2-reports
parent5735fe65678317a1da36dcd338aa30fd03e23960 (diff)
downloadbcfg2-fe5285d55f2138413b17a2be38841a64d88bdbea.tar.gz
bcfg2-fe5285d55f2138413b17a2be38841a64d88bdbea.tar.bz2
bcfg2-fe5285d55f2138413b17a2be38841a64d88bdbea.zip
fixed minor issues involving -e and -b in bcfg2-reports
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4864 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/sbin/bcfg2-reports')
-rwxr-xr-xsrc/sbin/bcfg2-reports9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/sbin/bcfg2-reports b/src/sbin/bcfg2-reports
index 1e64669e8..fdc9989d0 100755
--- a/src/sbin/bcfg2-reports
+++ b/src/sbin/bcfg2-reports
@@ -88,9 +88,9 @@ def print_fields(fields, cli, max_name, entrydict):
print display
def print_entry(item, max_name):
- fmt = ("%%-%dx " % (max_name))
- fdata = [item.name, item.kind]
- dispplay = fmt % tuple(fdata)
+ fmt = ("%%-%ds " % (max_name))
+ fdata = item.kind + ":" + item.name
+ display = fmt % (fdata)
print display
fields = ""
@@ -120,7 +120,7 @@ for option in opts:
extraentry = option[1]
if option[0] == '-x':
expire = option[1]
- if option[0] == '-s':
+ if option[0] == '-s' or option[0] == '-b' or option[0] == '-e':
singlehost = option[1]
if expire != "":
@@ -255,7 +255,6 @@ else:
else:
for c_inst in c_list:
result.append(c_inst)
-
max_name = -1
if 'name' in fields:
for c_inst in result: