Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ensure role is idempotent and supports check mode
Cause: Role was not idempotent, and did not support check mode. Consequence: Users could not use role to ensure idempotence or check state. Fix: The role has been fixed to return `"changed": true` if the role changed the state of the system, and `false` otherwise. This means that some operations that used to return an error, such as trying to snapshot a volume that already had a snapshot, or trying to remove a snapshot that does not exist, will no longer return an error, but will instead just report `"changed": false`. Users should use the `list` operation to examine state of the system. Result: The role is idempotent and supports check mode. Signed-off-by: Rich Megginson <[email protected]>
- Loading branch information