Version information
released May 2nd 2024
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x
- Puppet >=6.0.0 <9.0.0
- , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'geant-google_chrome', '0.20.2'
Learn more about managing modules with a PuppetfileDocumentation
geant/google_chrome — version 0.20.2 May 2nd 2024
Google Chrome
Table of Contents
Overview
Puppet module to install the Google Chrome web browser module. Currently supports installation on:
- CentOS / Fedora
- Debian / Ubuntu
- openSUSE
Usage
To install the stable version of Google Chrome, include or declare the google_chrome class.
include google_chrome
class { 'google_chrome':
}
To install unstable or beta versions, set the appropriate version attribute.
class { 'google_chrome':
version => 'unstable',
}
class { 'google_chrome':
version => 'beta',
}
To modify the full set of default parameters.
class { 'google_chrome':
ensure => 'installed',
version => 'unstable',
package_name => 'google-chrome',
repo_gpg_key => 'https://dl.google.com/linux/linux_signing_key.pub',
repo_gpg_key_id => '4CCA1EAF950CEE4AB83976DCA040830F7FAC5991',
repo_gpg_key_options => 'http-proxy="http://proxyuser:proxypass@example.org:3128"',
repo_name => 'google-chrome',
defaults_file => '/etc/default/google-chrome',
defaults_proxy_pac_url => 'http://foo/bar/proxy.pac',
repo_base_url => 'https://dl.google.com/linux/chrome/rpm/stable/x86_64'
}
Notes
Forked from jamesnetherton/google_chrome
Dependencies
- puppetlabs/stdlib (>=4.0.0 <10.0.0)
- puppetlabs/apt (>=2.0.0 <8.0.0)
- puppet/zypprepo (>=2.0.0 <3.0.0)
The MIT License (MIT) Copyright (c) 2014 James Netherton Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.