Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit ce6399b

Browse files
author
Rafael Mendonça França
committed
Merge pull request #35 from mrchrisadams/patch-1
Add example of installing packages with options
2 parents 38d2939 + 7151590 commit ce6399b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@ class clojure {
2828
ensure => 'anotherversion' ;
2929
}
3030
}
31+
32+
# Installing homebrew formulas, and passing in arbitrary flags, like:
33+
# brew install php54 --with-fpm --without-apache
34+
35+
package { 'php54':
36+
ensure => present,
37+
install_options => [
38+
'--with-fpm',
39+
'--without-apache'
40+
],
41+
require => Package['zlib']
42+
}
3143
```
3244

3345
## Required Puppet Modules

0 commit comments

Comments
 (0)