Skip to content

Instantly share code, notes, and snippets.

@levicole
Created September 24, 2013 23:05
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 levicole/c737376fff06a43a0a42 to your computer and use it in GitHub Desktop.
Save levicole/c737376fff06a43a0a42 to your computer and use it in GitHub Desktop.
#├── manifests
#│ └── site.pp
#│ └── true_server.pp
# site.pp
node 'slavedb' {
class {'true_server':}
}
# true_server.pp
class true_server {
#...
}
@jfryman
Copy link

jfryman commented Sep 25, 2013

You need to include true_server.pp or put true_server in the module auto loading format.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment