Skip to content

Instantly share code, notes, and snippets.

@gravyboat
Created June 20, 2014 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gravyboat/0a8e43e158417dd9be4b to your computer and use it in GitHub Desktop.
Save gravyboat/0a8e43e158417dd9be4b to your computer and use it in GitHub Desktop.
modularity example
dep/init.sls
------------
pkg.install:
- name: my_awesome_package
dep/dep1.sls
------------
include:
- dep
dep/dep2.sls
------------
include:
- dep.dep1 #includes dep, and dep1
dep/dep3.sls
------------
include:
- dep
dep/dep4.sls
------------
include:
- dep.dep3 #include dep, and dep3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment