We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Is it possible to use chef-rewind to rewind only one of two instances of a LWRP? For example in the sensu::rabbitmq recipe I have this:
rabbitmq_user node.sensu.rabbitmq.user do password node.sensu.rabbitmq.password action :add end rabbitmq_user node.sensu.rabbitmq.user do vhost node.sensu.rabbitmq.vhost permissions "\".*\" \".*\" \".*\"" action :set_permissions end
I would like to change the permissions in the second rabbitmq_user call. Is there a way to do this using chef-rewind?
Thanks, Daniel
The text was updated successfully, but these errors were encountered:
I don't think you would need to use chef-rewind for this. You should be able to write this resource like this instead
rabbitmq_user node.sensu.rabbitmq.user do vhost node.sensu.rabbitmq.vhost password node.sensu.rabbitmq.password permissions "\".*\" \".*\" \".*\"" action [ :add, :set_permissions ] end
Sorry, something went wrong.
No branches or pull requests
Hi,
Is it possible to use chef-rewind to rewind only one of two instances of a LWRP? For example in the sensu::rabbitmq recipe I have this:
I would like to change the permissions in the second rabbitmq_user call. Is there a way to do this using chef-rewind?
Thanks,
Daniel
The text was updated successfully, but these errors were encountered: