File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55## Description
66
7- puppet module to install and configure [ influxdb] ( https://influxdb.org ) (version 0.9.x and newer).
7+ puppet module to install and configure [ influxdb] ( https://influxdb.org ) (version 0.9.x and newer). Tested with InfluxDB 0.9.1 and 0.9.2.
88
99## Installation
1010
11- ` puppet module install --modulepath /path/to/puppet/modules rplessl -influxdb `
11+ ` puppet module install --modulepath /path/to/puppet/modules puppet -influxdb `
1212
1313## Usage
1414
15-
1615Basic default uses local package
1716
1817` class { 'influxdb': } `
1918
20- Install from amazon. s3 is default when not using repository
19+ Install the influx packages from InfluxDB upstream Amazon s3 packages. This is the default when not using a self managed repository
2120```
2221 class { 'influxdb':
2322 install_from_repository => false,
2423 }
2524```
26- Install using your own url/proxy
25+ Alternativly you can install packages using your own url/proxy
2726```
2827 class { 'influxdb':
2928 install_from_repository => false,
30- source_url => 'https://download.test.com/proxy/influxdb/influxdb-1.0.0.rpm'
29+ download_url => 'https://download.test.com/proxy/influxdb/influxdb-1.0.0.rpm'
3130 }
3231```
3332
@@ -37,6 +36,7 @@ These configuration parameter can be set:
3736 $ensure = 'installed'
3837 $version = 'latest'
3938 $install_from_repository = true
39+ $download_url = undef or https://download.test.com/influxdb.deb
4040 $config_file = '/etc/opt/influxdb/influxdb.conf'
4141
4242 # general section of influxb.conf
You can’t perform that action at this time.
0 commit comments