summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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())