Created
January 11, 2013 17:46
-
-
Save supercow/4512622 to your computer and use it in GitHub Desktop.
This is awful.
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
[root@james modules]# cat /tmp/one /tmp/two | |
three | |
three |
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 one { | |
file { '/tmp/one': | |
content => "one\n", | |
} | |
} | |
class two { | |
File { | |
content => "two", | |
} | |
file { '/tmp/two': } | |
} | |
class three { | |
File <| |> { | |
content => "three\n", | |
} | |
} | |
include one,two,three |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment