Created
August 28, 2009 15:06
-
-
Save tmoertel/177024 to your computer and use it in GitHub Desktop.
Puppet can't find class
This file contains 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
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