puppetlabs/puppet · error · Puppet::Error
Could not delete %{resource} %{name}: %{detail}
Error message
Could not delete %{resource} %{name}: %{detail} What it means
Error "Could not delete %{resource} %{name}: %{detail}" thrown in puppetlabs/puppet.
Source
Thrown at lib/puppet/provider/aix_object.rb:489
attributes[aix_attribute.name] = aix_attribute.convert_property_value(property_should)
end
execute(addcmd(attributes))
rescue Puppet::ExecutionFailure => detail
raise Puppet::Error, _("Could not create %{resource} %{name}: %{detail}") % { resource: @resource.class.name, name: @resource.name, detail: detail }, detail.backtrace
end
# Deletes this instance resource
def delete
execute(deletecmd)
# Recollect the object info so that our current properties reflect
# the actual state of the system. Otherwise, puppet resource reports
# the wrong info. at the end. Note that this should return nil.
object_info(true)
rescue Puppet::ExecutionFailure => detail
raise Puppet::Error, _("Could not delete %{resource} %{name}: %{detail}") % { resource: @resource.class.name, name: @resource.name, detail: detail }, detail.backtrace
end
end
View on GitHub (pinned to e227c27540)
When it happens
Trigger: Thrown at lib/puppet/provider/aix_object.rb:489 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of puppetlabs/puppet@e227c27540 (2026-08-21).
Data as JSON: /api/errors/f4b420f49e07fe24.
Report an issue: GitHub.