Skip to content

Commit 0dc08cb

Browse files
committed
Remove cert from man docs
1 parent e712d7f commit 0dc08cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/puppet_references/puppet/man.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def build_index(commands)
8585
8686
#{ categories[:core].reduce('') {|memo, item| memo << "- [puppet #{item}](#{item}.md)\n"} }
8787
88-
> Note: The `puppet cert` command is available only in Puppet versions prior to 6.0. For 6.0 and later, use the [`puppetserver cert`command](https://puppet.com/docs/puppet/6.0/puppet_server_ca_cli.html).
88+
> Note: The `puppet cert` command is available only in Puppet versions prior to 6.0. For 6.0 and later, use the [`puppetserver cert`command](https://puppet.com/docs/puppet/6/puppet_server_ca_cli.html).
8989
9090
Secondary subcommands
9191
-----
@@ -112,6 +112,7 @@ def get_subcommands
112112
applications = application_files.map {|f| f.basename('.rb').to_s}
113113
applications.delete('face_base')
114114
applications.delete('indirection_base')
115+
applications.delete('cert')
115116
applications
116117
end
117118

lib/puppet_references/util.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def self.make_header(data)
1616

1717
# Run a command that can't cope with a contaminated shell environment.
1818
def self.run_dirty_command(command)
19-
result = Bundler.with_clean_env do
19+
result = Bundler.with_unbundled_env do
2020
# Bundler replaces the entire environment once this block is finished.
2121
ENV.delete('RUBYLIB')
2222
%x( #{command} )

0 commit comments

Comments
 (0)