Exception: Puppet::ModuleTool::Errors::PermissionDeniedCreateInstallDirectoryError Private
- Inherits:
-
InstallError
- Object
- RuntimeError
- Error
- ModuleToolError
- InstallError
- Puppet::ModuleTool::Errors::PermissionDeniedCreateInstallDirectoryError
- Defined in:
- lib/puppet/module_tool/errors/installer.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(original, options) ⇒ PermissionDeniedCreateInstallDirectoryError
constructor
private
A new instance of PermissionDeniedCreateInstallDirectoryError.
- #multiline ⇒ Object private
Methods inherited from ModuleToolError
Constructor Details
#initialize(original, options) ⇒ PermissionDeniedCreateInstallDirectoryError
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of PermissionDeniedCreateInstallDirectoryError.
64 65 66 67 68 69 |
# File 'lib/puppet/module_tool/errors/installer.rb', line 64 def initialize(original, ) @requested_module = [:requested_module] @requested_version = [:requested_version] @directory = [:directory] super(_("'%{module_name}' (%{version}) requested; Permission is denied to create %{dir}.") % { module_name: @requested_module, version: @requested_version, dir: @directory }, original) end |
Instance Method Details
#multiline ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
71 72 73 74 75 76 77 |
# File 'lib/puppet/module_tool/errors/installer.rb', line 71 def multiline = [] << _("Could not install module '%{module_name}' (%{version})") % { module_name: @requested_module, version: @requested_version } << _(" Permission is denied when trying to create directory '%{directory}'.") % { directory: @directory } << _(' A potential solution is to check the ownership and permissions of parent directories.') .join("\n") end |