├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .kitchen.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Vagrantfile ├── chefignore ├── defaults └── main.yml ├── handlers └── main.yml ├── hosts ├── meta └── main.yml ├── role.yml ├── spec ├── collectd_spec.rb ├── default_spec.rb └── spec_helper.rb ├── tasks ├── collectd.yml ├── install-debian.yml ├── install-download.yml └── main.yml ├── templates ├── conf.j2 ├── init.d.influxd.j2 ├── iptables.j2 └── upstart.j2 ├── test └── integration │ ├── collectd │ └── ansiblespec │ │ └── config.yml │ └── default │ └── ansiblespec │ ├── Gemfile │ └── config.yml └── vars └── main.yml /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/Vagrantfile -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- 1 | .kitchen 2 | -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- 1 | [localhost] 2 | 127.0.0.1 3 | -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/meta/main.yml -------------------------------------------------------------------------------- /role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/role.yml -------------------------------------------------------------------------------- /spec/collectd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/spec/collectd_spec.rb -------------------------------------------------------------------------------- /spec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/spec/default_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /tasks/collectd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/tasks/collectd.yml -------------------------------------------------------------------------------- /tasks/install-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/tasks/install-debian.yml -------------------------------------------------------------------------------- /tasks/install-download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/tasks/install-download.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/templates/conf.j2 -------------------------------------------------------------------------------- /templates/init.d.influxd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/templates/init.d.influxd.j2 -------------------------------------------------------------------------------- /templates/iptables.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/templates/iptables.j2 -------------------------------------------------------------------------------- /templates/upstart.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/templates/upstart.j2 -------------------------------------------------------------------------------- /test/integration/collectd/ansiblespec/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/test/integration/collectd/ansiblespec/config.yml -------------------------------------------------------------------------------- /test/integration/default/ansiblespec/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/test/integration/default/ansiblespec/Gemfile -------------------------------------------------------------------------------- /test/integration/default/ansiblespec/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtchavez/ansible-influxdb/HEAD/test/integration/default/ansiblespec/config.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars for influxdb 3 | --------------------------------------------------------------------------------