Changed debian repo from http to https, but exisiting http repos (from earlier runs) would persist and lead to an duplicate entry warning in apt. This PR will remove the old http repo, if present.
31 lines
1,023 B
YAML
31 lines
1,023 B
YAML
---
|
|
es_major_version: "2.x"
|
|
es_version: "2.3.4"
|
|
es_version_lock: false
|
|
es_use_repository: true
|
|
es_apt_key: "https://packages.elasticsearch.org/GPG-KEY-elasticsearch"
|
|
es_apt_url: "deb https://packages.elastic.co/elasticsearch/{{ es_major_version }}/debian stable main"
|
|
es_apt_url_old: "deb http://packages.elastic.co/elasticsearch/{{ es_major_version }}/debian stable main"
|
|
es_start_service: true
|
|
es_java_install: true
|
|
update_java: false
|
|
es_restart_on_change: true
|
|
es_plugins_reinstall: false
|
|
es_scripts: false
|
|
es_templates: false
|
|
es_user: elasticsearch
|
|
es_group: elasticsearch
|
|
es_config: {}
|
|
#Need to provide default directories
|
|
es_pid_dir: "/var/run/elasticsearch"
|
|
es_data_dirs: "/var/lib/elasticsearch"
|
|
es_log_dir: "/var/log/elasticsearch"
|
|
es_work_dir: "/tmp/elasticsearch"
|
|
es_max_open_files: 65536
|
|
es_allow_downgrades: false
|
|
es_enable_xpack: false
|
|
es_xpack_features: []
|
|
#These are used for internal operations performed by ansible.
|
|
#They do not effect the current configuration
|
|
es_api_host: "localhost"
|
|
es_api_port: 9200
|