Created
March 21, 2017 18:45
-
-
Save dnase/8ce0fedc2e9e9abda766f27265e3cf6b to your computer and use it in GitHub Desktop.
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
file "/etc/motd" { | |
ensure => file, | |
path => '/etc/motd', | |
owner => 'root', | |
group => 'root', | |
mode => '0755', | |
content => 'This is a crazy motd!\n' | |
} | |
#should be: | |
file { "/etc/motd": | |
ensure => file, | |
path => '/etc/motd', | |
owner => 'root', | |
group => 'root', | |
mode => '0755', | |
content => 'This is a crazy motd!\n' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ahh