-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from jhoblitt/feature/jar-2.41.0
update default selenium jar version to 2.41.0
- Loading branch information
Showing
5 changed files
with
7 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,77 +1,7 @@ | ||
# == Class: selenium | ||
# | ||
# === Parameters | ||
# | ||
# This class controls common configuration values used by the | ||
# `selenium::{server,hub,node}` classes. It is automatically included in the | ||
# manifest by those classes and it need not be explicitly declared except to | ||
# override the default values. | ||
# | ||
# ```puppet | ||
# # defaults | ||
# class { 'selenium': | ||
# user => 'selenium', | ||
# group => 'selenium', | ||
# install_root => '/opt/selenium', | ||
# java => 'java', | ||
# version => '2.39.0', | ||
# url => undef, | ||
# download_timeout => '90', | ||
# } | ||
# ``` | ||
# | ||
# #### `user` | ||
# | ||
# `String` defaults to: `selenium` | ||
# | ||
# The name/uid of the system role account to execute the server process under | ||
# and will have ownership of files. | ||
# | ||
# #### `group` | ||
# | ||
# `String` defaults to: `selenium` | ||
# | ||
# The group/gid of the system role account and group ownership of files. | ||
# | ||
# #### `install_root` | ||
# | ||
# `String` defaults to: `/opt/selenium` | ||
# | ||
# The dirname under which Selenium Server files (including logs) will be | ||
# created. | ||
# | ||
# #### `java` | ||
# | ||
# `String` defaults to: `java` | ||
# | ||
# The path of the `java` interpreter to use. | ||
# | ||
# #### `version` | ||
# | ||
# `String` defaults to: `2.39.0` (the latest release as of 2013-12-20) | ||
# | ||
# The version of Selenium Server to download. Used to form the URL used to | ||
# fetch the jar file. | ||
# | ||
# #### `url` | ||
# | ||
# `String` defaults to: `undef` | ||
# | ||
# If defined, `url` will be used to download the Selenium Server jar file. | ||
# However, the `version` parameter just match the version of the downloaded | ||
# file as this information is needed when starting up the server (this may | ||
# change to be be automatically parsed from the `url` in a later release). | ||
# | ||
# #### `download_timeout` | ||
# | ||
# `String` defaults to: `90` | ||
# | ||
# Timeout to download of the package. | ||
# | ||
# === Authors | ||
# | ||
# Joshua Hoblitt <[email protected]> | ||
# | ||
# Please refer to https://github.com/jhoblitt/puppet-selenium#usage for | ||
# parameter documentation. | ||
# | ||
class selenium( | ||
$user = $selenium::params::user, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters