summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Weiß <holger@zedat.fu-berlin.de>2011-07-06 14:16:35 +0200
committerHolger Weiß <holger@zedat.fu-berlin.de>2011-07-06 14:16:35 +0200
commit26b7e0aff6b8b8a46c6932f5e05d3612746c4995 (patch)
tree5352e9a0a6356e5989715ce020246ba44ef5e158
parent34a35e8a22e3a37da1093865a96bd627c3675bfd (diff)
downloadbcfg2-26b7e0aff6b8b8a46c6932f5e05d3612746c4995.tar.gz
bcfg2-26b7e0aff6b8b8a46c6932f5e05d3612746c4995.tar.bz2
bcfg2-26b7e0aff6b8b8a46c6932f5e05d3612746c4995.zip
bcfg2-info: Remove "generators" command
The command "bcfg2-info generators" didn't spit out anything useful, just an unexpanded $Id$ keyword for each of the current generators. It's been that way for quite some time now, and nobody seemed to miss the command.
-rw-r--r--man/bcfg2-info.84
-rwxr-xr-xsrc/sbin/bcfg2-info7
2 files changed, 0 insertions, 11 deletions
diff --git a/man/bcfg2-info.8 b/man/bcfg2-info.8
index a97f60c40..fe20d5d6c 100644
--- a/man/bcfg2-info.8
+++ b/man/bcfg2-info.8
@@ -83,10 +83,6 @@ Shell out to native python interpreter.
.RS
Display filesystem events as they are processed.
.RE
-.B generators
-.RS
-List current versions of generators.
-.RE
.B groups
.RS
List groups
diff --git a/src/sbin/bcfg2-info b/src/sbin/bcfg2-info
index 07953ae69..951a5df58 100755
--- a/src/sbin/bcfg2-info
+++ b/src/sbin/bcfg2-info
@@ -37,7 +37,6 @@ clients - Print out client/profile information
config - Print out the configuration of the Bcfg2 server
debug - Shell out to native python interpreter
event_debug - Display filesystem events as they are processed
-generators - List current versions of generators
groups - List groups
help - Print this list of available commands
mappings <type*> <name*> - Print generator mappings for optional type and name
@@ -311,12 +310,6 @@ class infoCore(cmd.Cmd, Bcfg2.Server.Core.Core):
]
printTabular(output)
-
- def do_generators(self, _):
- """Print out generator info."""
- for generator in self.generators:
- print(generator.__version__)
-
def do_showentries(self, args):
"""Show abstract configuration entries for a given host."""
arglen = len(args.split())