Skip to content

Commit

Permalink
Merge pull request #351 from voxpupuli/remove-legacy-top-scope-syntax
Browse files Browse the repository at this point in the history
Remove legacy top-scope syntax
  • Loading branch information
kenyon authored Nov 23, 2023
2 parents ce25cf6 + 211ee4d commit e0bb73a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,18 @@ modulepath, this is the most basic way of installing Splunk Server with default
settings:

```puppet
include ::splunk::enterprise
include splunk::enterprise
```

This is the most basic way of installing the Splunk Universal Forwarder with
default settings:

```puppet
class { '::splunk::params':
class { 'splunk::params':
server => $my_splunk_server,
}
include ::splunk::forwarder
include splunk::forwarder
```

Once both Splunk Enterprise and Splunk Universal Forwarder have been deployed
Expand Down Expand Up @@ -199,7 +199,7 @@ and build values. Running puppet again will perform the following:

```puppet
# Tell the module to get packages directly from Splunk.
class { '::splunk::params':
class { 'splunk::params':
version => '6.6.8',
build => '6c27a8439c1e',
#version => '7.1.2',
Expand All @@ -210,7 +210,7 @@ class { '::splunk::params':
# Specifying package_ensure => 'latest' will ensure that the splunk and
# splunkforwarder packages will be upgraded when you specify newer values for
# version and build.
class { '::splunk::forwarder':
class { 'splunk::forwarder':
package_ensure => 'latest',
}
```
Expand Down

0 comments on commit e0bb73a

Please sign in to comment.