Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change file mode to string. #40

Merged
merged 1 commit into from
Mar 29, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,14 @@ Splunk Universal Forwarder installation media. Installation media will need to
be aquired seperately, and the module configured to use it. Users can use yum
or apt to install these components if they're self-hosted.


If applicable, this section should have a brief description of the technology the module integrates with and what that integration enables. This section should answer the questions: "What does this module *do*?" and "Why would I use it?"


## Setup

### What splunk affects

* Installs the Splunk/Forwarder package and manages their config files. It does not purge them by default.
* The module will set up both Splunk and Splunkforwarder to run as the 'root' user on POSIX platforms.

### Setup Requirements **OPTIONAL**
### Setup Requirements

To begin using this module, use the Puppet Module Tool (PMT) from the command
line to install this module:
Expand Down Expand Up @@ -190,6 +186,6 @@ This virtual resource will get collected by the `::splunk::forwarder` class if i

TBD

## Release Notes/Contributors/Etc **Optional**
## Release Notes/Contributors/Etc

TBD
2 changes: 1 addition & 1 deletion manifests/forwarder.pp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
File {
owner => $splunk_user,
group => $splunk_user,
mode => 644,
mode => '0644',
}

file { "/opt/splunkforwarder/etc/system/local/inputs.conf":
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
File {
owner => $splunk_user,
group => $splunk_user,
mode => 600,
mode => '0600',
}

file { "/opt/splunk/etc/system/local/authentication.conf":
Expand Down