Skip to content

Instantly share code, notes, and snippets.

@adamhjk
Created April 27, 2010 21:11
Show Gist options
  • Select an option

  • Save adamhjk/381335 to your computer and use it in GitHub Desktop.

Select an option

Save adamhjk/381335 to your computer and use it in GitHub Desktop.
# Chef
file "/tmp/foo" do
owner "root"
mode "0755"
end
# Puppet
file { "/tmp/foo":
owner => "root",
mode => "0755",
ensure => present
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment