-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
Multiple value entries #18
Comments
Seems to be quite complicated and painful to fic it in 1.0 version. we may need #11 to be fixed :/ |
@MrMMoris |
@guilhem where would I have that? with the resource attribute or in the json? |
@guilhem sorry for the double ping, but can you confirm where I would use "command1 && command2"? Thanks |
@MrMMorris : you can try that: |
Marking stale due to inactivity. Remove stale label or comment or this will be closed in 7 days. Alternatively drop by the #sous-chefs channel on the Chef Community Slack and we'll be happy to help! Thanks, Sous-Chefs. |
Sorry to bug you again, thanks for the quick response last time!
I was wondering if it's possible to have multiple values such as for up/down? The easiest I guess would be to have them as an array? but they are strings.
Json:
"down": "ip r d 172.22.0.0/16 via 10.1.0.1 dev eth0",
"down": "ip r d 10.19.0.0/16 via 10.1.0.2 dev eth0"
Gives me only the first value.
"down": ["ip r d 172.22.0.0/16 via 10.1.0.1 dev eth0", "ip r d 10.19.0.0/16 via 10.1.0.2 dev eth0"]
Gives me "Option down must be a kind of String! You passed ["ip r d 172.22.0.0/16 via 10.1.0.1 dev eth0", "ip r d 10.19.0.0/16 via 10.1.0.2 dev eth0"]."
The text was updated successfully, but these errors were encountered: