remove-inventory-status step#

The remove-inventory-status step removes a status from a component resource.

Format#

remove-inventory-status step "foo" is
    -- name of the status to remove from the component resource; required
    status "Active"
on success
    finish
end

Properties#

Property Description
Status The component resource that the process is running against will have the specified inventory entry removed from it.

Example#

start is
    start "A"
    start "B"
end

remove-inventory-status step A is
    status Active
on success
    finish
end

remove-inventory-status step B is
    status inventory-status-1
on success
    finish
end

Parent topic: Core component process steps