Skip to content
New issue

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

More than one action statement of the same type gets ignored #87

Closed
ggeldenhuis opened this issue Mar 29, 2012 · 1 comment
Closed

More than one action statement of the same type gets ignored #87

ggeldenhuis opened this issue Mar 29, 2012 · 1 comment

Comments

@ggeldenhuis
Copy link

  • name: Stop 389 services
    action: service name=dirsrv-admin state=stopped
    action: service name=dirsrv state=stopped

This does not work as expected to get it to work you have to:

  • name: Stop 389 services
    action: service name=dirsrv-admin state=stopped
  • name: Stop 389 services2
    action: service name=dirsrv state=stopped
@mpdehaan
Copy link
Contributor

per mailing list discussion

- name: foo
  action: bar
- action: bar

is ok

you can't do:

 - action:
   action:

because that's just overriding the same hash key.

If that doesn't describe the problem and there is still an issue let me know.

TIP: github thinks everything is markdown so indent four spaces on thigns you don't want to reformat. (Yeah, it's annoying)

Thanks!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants