17 lines
351 B
Python
17 lines
351 B
Python
files = {
|
|
'/etc/elasticsearch/elasticsearch.yml': {
|
|
'content_type': 'mako',
|
|
'triggers': {
|
|
'svc_systemd:elasticsearch:restart',
|
|
}
|
|
},
|
|
}
|
|
|
|
svc_systemd = {
|
|
'elasticsearch': {
|
|
'needs': {
|
|
'file:/etc/elasticsearch/elasticsearch.yml',
|
|
'pkg_apt:elasticsearch',
|
|
},
|
|
},
|
|
}
|