Puppet Class: chrome
- Defined in:
- manifests/init.pp
Overview
Class: chrome
Install Google Chrome
Parameters
- package
-
Package name to install from homebrew
10 11 12 13 14 15 16 17 |
# File 'manifests/init.pp', line 10
class chrome (
$package = 'google-chrome-dev-halyard'
) {
package { $package:
provider => 'brewcask',
require => Homebrew::Tap['halyard/casks']
}
}
|