| Server IP : 77.68.64.21 / Your IP : 216.73.217.59 Web Server : Apache System : Linux hp3-wp-1011352.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2516497 ( 2094697) PHP Version : 8.3.30 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/ruby/vendor_ruby/puppet/face/module/ |
Upload File : |
Puppet::Face.define(:module, '1.0.0') do
action(:uninstall) do
summary "Uninstall a puppet module."
description <<-EOT
Uninstalls a puppet module from the modulepath (or a specific
target directory).
EOT
returns "Hash of module objects representing uninstalled modules and related errors."
examples <<-'EOT'
Uninstall a module:
$ puppet module uninstall puppetlabs-ssh
Removed /etc/puppet/modules/ssh (v1.0.0)
Uninstall a module from a specific directory:
$ puppet module uninstall puppetlabs-ssh --modulepath /usr/share/puppet/modules
Removed /usr/share/puppet/modules/ssh (v1.0.0)
Uninstall a module from a specific environment:
$ puppet module uninstall puppetlabs-ssh --environment development
Removed /etc/puppet/environments/development/modules/ssh (v1.0.0)
Uninstall a specific version of a module:
$ puppet module uninstall puppetlabs-ssh --version 2.0.0
Removed /etc/puppet/modules/ssh (v2.0.0)
EOT
arguments "<name>"
option "--force", "-f" do
summary "Force uninstall of an installed module."
description <<-EOT
Force the uninstall of an installed module even if there are local
changes or the possibility of causing broken dependencies.
EOT
end
option "--version=" do
summary "The version of the module to uninstall"
description <<-EOT
The version of the module to uninstall. When using this option, a module
matching the specified version must be installed or else an error is raised.
EOT
end
when_invoked do |name, options|
name = name.gsub('/', '-')
Puppet::ModuleTool.set_option_defaults options
Puppet.notice "Preparing to uninstall '#{name}'" << (options[:version] ? " (#{colorize(:cyan, options[:version].sub(/^(?=\d)/, 'v'))})" : '') << " ..."
Puppet::ModuleTool::Applications::Uninstaller.run(name, options)
end
when_rendering :console do |return_value|
if return_value[:result] == :failure
Puppet.err(return_value[:error][:multiline])
exit 1
else
mod = return_value[:affected_modules].first
"Removed '#{return_value[:module_name]}'" <<
(mod.version ? " (#{colorize(:cyan, mod.version.to_s.sub(/^(?=\d)/, 'v'))})" : '') <<
" from #{mod.modulepath}"
end
end
end
end