Skip to content

Instantly share code, notes, and snippets.

@moltar
Created October 22, 2012 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moltar/3932010 to your computer and use it in GitHub Desktop.
Save moltar/3932010 to your computer and use it in GitHub Desktop.
file { "$install_dir/create":
path => $install_dir,
ensure => 'directory',
owner => vagrant,
group => vagrant,
}
## ....
file { "$install_dir/chown":
path => $install_dir,
ensure => 'directory',
owner => vagrant,
group => vagrant,
recurse => true,
require => exec['wp-cli-core-config'],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment