Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Fixed parse errors for Puppet 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jorritfolmer committed Jan 27, 2016
1 parent ddb248c commit 5c1baf8
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ rvm:
- 2.0.0
- 2.1
env:
- PUPPET_GEM_VERSION=2.7.3
- PUPPET_GEM_VERSION=2.7.1
- PUPPET_GEM_VERSION=3.7.2
- PUPPET_GEM_VERSION=4.3.2
matrix:
Expand All @@ -18,6 +18,6 @@ matrix:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION=4.3.2
- rvm: 2.0.0
env: PUPPET_GEM_VERSION=2.7.3
env: PUPPET_GEM_VERSION=2.7.1
- rvm: 2.1
env: PUPPET_GEM_VERSION=2.7.3
env: PUPPET_GEM_VERSION=2.7.1
2 changes: 1 addition & 1 deletion manifests/authentication.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
$authType = $splunk::authtype,
$idptype = $splunk::idptype,
$idpurl = $splunk::idpurl,
$rolemap_SAML = $splunk::rolemap_SAML,
$rolemap_SAML = $splunk::rolemap_SAML
){
case $authType {
'Splunk': {
Expand Down
2 changes: 1 addition & 1 deletion manifests/certs/s2s.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$dhparamsize = $splunk::dhparamsize,
$package = $splunk::package,
$splunk_os_user = $splunk::splunk_os_user,
$splunk_home = $splunk::splunk_home,
$splunk_home = $splunk::splunk_home
){
file { "${splunk_home}/etc/auth/certs":
ensure => directory,
Expand Down
2 changes: 1 addition & 1 deletion manifests/distsearch.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class splunk::distsearch (
$searchpeers = $splunk::searchpeers,
$splunk_os_user = $splunk::splunk_os_user,
$splunk_home = $splunk::splunk_home,
$splunk_home = $splunk::splunk_home
){
if $searchpeers == undef {
file { "${splunk_home}/etc/system/local/distsearch.conf":
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
$authtype = $splunk::params::authtype,
$idptype = $splunk::params::idptype,
$idpurl = $splunk::params::idpurl,
$rolemap_SAML = $splunk::params::rolemap_SAML,
$rolemap_SAML = $splunk::params::rolemap_SAML
) inherits splunk::params {

if $type == 'uf' {
Expand Down
2 changes: 1 addition & 1 deletion manifests/inputs.pp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
$ciphersuite = $splunk::ciphersuite,
$sslversions = $splunk::sslversions,
$ecdhcurvename = $splunk::ecdhcurvename,
$splunk_home = $splunk::splunk_home,
$splunk_home = $splunk::splunk_home
){
if $inputport == undef {
augeas { "${splunk_home}/etc/system/local/inputs.conf":
Expand Down
2 changes: 1 addition & 1 deletion manifests/outputs.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$tcpout = $splunk::tcpout,
$splunk_os_user = $splunk::splunk_os_user,
$splunk_home = $splunk::splunk_home,
$useACK = $splunk::useACK,
$useACK = $splunk::useACK
){
if $tcpout == undef {
file { "${splunk_home}/etc/system/local/outputs.conf":
Expand Down
2 changes: 1 addition & 1 deletion manifests/passwd.pp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
class splunk::passwd (
$admin = $splunk::admin,
$splunk_home = $splunk::splunk_home,
$splunk_os_user = $splunk::splunk_os_user,
$splunk_os_user = $splunk::splunk_os_user
){
if $admin != undef {
$hash = $admin[hash]
Expand Down
2 changes: 1 addition & 1 deletion manifests/server/ssl.pp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
$ciphersuite = $splunk::ciphersuite,
$sslversions = $splunk::sslversions,
$ecdhcurvename = $splunk::ecdhcurvename,
$splunk_home = $splunk::splunk_home,
$splunk_home = $splunk::splunk_home
){
if $ecdhcurvename == undef {
augeas { "${splunk_home}/etc/system/local/server.conf/sslConfig":
Expand Down
4 changes: 2 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"requirements": [
{
"name": "pe",
"version_requirement": ">= 3.7 < 2015.3.0"
"version_requirement": ">= 2.7 < 2015.3.0"
},
{
"name": "puppet",
"version_requirement": ">= 2.7.3 < 5.0.0"
"version_requirement": ">= 2.7.1 < 5.0.0"
}
],
"tags": ["splunk", "splunkforwarder"]
Expand Down

0 comments on commit 5c1baf8

Please sign in to comment.