Directory and file layout as follows:
app_test/
app_test/manifests
app_test/manifests/init.pp
app_test/manifests/test.pp
Contents of init.pp
:
class app_test {
include app_test::test
}
Contents of test.pp
:
class app_test::test {
exec { 'hello world':
command => "/bin/echo Hello World >> /tmp/are-you-there.txt"
}
}
Puppet v2.7.11
is installed.
$ puppet apply init.pp
notice: Finished catalog run in 0.01 seconds
Could someone please indicate why this doesn't generate the file /tmp/are-you-there-txt
?