Skip to content
Snippets Groups Projects
Commit 38f351a5 authored by nimrod's avatar nimrod
Browse files

Just installation, no configuration yet.

parent 9653c82e
No related branches found
No related tags found
No related merge requests found
---
# tasks file for ansible-logstash
- name: Add apt repo key
apt_key:
url: https://packages.elastic.co/GPG-KEY-elasticsearch
state: present
- name: Add apt repo
apt_repository:
repo: deb http://packages.elasticsearch.org/logstash/2.0/debian stable main
state: present
update_cache: yes
- name: apt install
with_items:
- openjdk-7-jre-headless
- logstash
- python-dev
- python-pip
apt:
name: '{{ item }}'
state: present
update_cache: yes
cache_valid_time: 3600
- name: pip install Elaticsearch curator
pip:
name: elasticsearch-curator
state: present
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment