Skip to content

Instantly share code, notes, and snippets.

@tmoertel
Created August 28, 2009 15:06
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 tmoertel/177024 to your computer and use it in GitHub Desktop.
Save tmoertel/177024 to your computer and use it in GitHub Desktop.
Puppet can't find class
class x {
notify { xn: message => "x" }
}
define y() {
notify { yn: message => "y", require => Class["x"] }
}
y { "test": }
# Could not find dependency Class[x] for Notify[yn] at test.pp:6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment