Last active
October 12, 2017 21:44
-
-
Save natemccurdy/5f6a6254758e63ec5f2baa1cb9199ba4 to your computer and use it in GitHub Desktop.
Batman Puppet module
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
# A Batman module to show how to namespace classes in Puppet | |
batman | |
└── manifests | |
├── init.pp ==> class batman | |
├── belt.pp ==> class batman::belt | |
├── tools | |
│ ├── batarang.pp ==> class batman::tools::batarang | |
│ ├── hook.pp ==> class batman::tools::hook | |
│ └── smoke.pp ==> class batman::tools::smoke | |
└── vehicles | |
├── bike.pp ==> class batman::vehicles::bike | |
├── mobile.pp ==> class batman::vehicles::mobile | |
└── plane.pp ==> class batman::vehicles::plane |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment