Created
February 5, 2013 13:28
-
-
Save fiddyspence/4714456 to your computer and use it in GitHub Desktop.
noo - hang on, what?
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@demomaster ~]# cat noop.pp | |
notify { 'test': | |
noop => false, | |
} | |
file { '/tmp/tard': | |
content => 'poo', | |
noop => false, | |
} | |
[root@demomaster ~]# puppet apply noop.pp --noop | |
notice: /Stage[main]//File[/tmp/tard]/ensure: defined content as '{md5}3af2531300024dee8297bd837fe3c723' | |
notice: test | |
notice: /Stage[main]//Notify[test]/message: defined 'message' as 'test' | |
notice: Finished catalog run in 0.31 seconds | |
You have new mail in /var/spool/mail/root | |
[root@demomaster ~]# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment