Skip to content

Instantly share code, notes, and snippets.

@cwebberOps
Last active August 29, 2015 13:57
Show Gist options
  • Save cwebberOps/9653024 to your computer and use it in GitHub Desktop.
Save cwebberOps/9653024 to your computer and use it in GitHub Desktop.
# No semi-colon
file {
'/path/to/file':
ensure => present
}
# Semi colon needed for first file, second file is just there for style consistency.
file {
'/path/to/file/a':
ensure => present;
'/path/to/file/b':
ensure => present;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment