Created
August 3, 2015 18:53
-
-
Save dnd/0b46b7ef0b29d94a4b7d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#whatever/init.sls | |
install some package | |
do basic configuration | |
include: | |
- .users | |
#whatever/users.sls | |
configure some users for the service | |
# I wanted to be able to do something like | |
pkg.installed: | |
- require_in: | |
- sls: .users | |
# to force the users include to run *after* the rest of the states in init.sls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment