diff --git a/README.md b/README.md index 89d9127..c72fe0e 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,9 @@ This role supports the following, - Defaults to `127.0.0.1`. - `opensearch_api_port` - Defaults to `9200`. +- `opencast_opensearch_started` + - By default, the OpenSearch service will (re)start if something has changed that requires the service to be restarted. This is done via the Ansible notification handler. However, if you expect the OpenSearch service to be running when you run this role, you can force the service to start by setting the value to `true`. + - Defaults to `false` (make use of Ansible Handler to reach the state) ## Dependencies diff --git a/defaults/main.yml b/defaults/main.yml index e4a6ad3..631da99 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -7,3 +7,6 @@ opensearch_api_host: 127.0.0.1 # Bind OpenSearch to this specific port. opensearch_api_port: 9200 + +# Whether to force the start of the OpenSearch service at the end of this role. +opencast_opensearch_started: false diff --git a/tasks/main.yml b/tasks/main.yml index dcb0206..0f741ff 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -2,8 +2,13 @@ - name: Include opensearch installation ansible.builtin.import_tasks: opensearch.yml -- name: Start and enable OpenSearch service +- name: Enable OpenSearch service ansible.builtin.systemd: name: opensearch enabled: true + +- name: Start OpenSearch service + ansible.builtin.systemd: + name: opensearch state: started + when: opencast_opensearch_started | bool diff --git a/tasks/opensearch.yml b/tasks/opensearch.yml index 2c7c3ae..67802b3 100644 --- a/tasks/opensearch.yml +++ b/tasks/opensearch.yml @@ -1,5 +1,6 @@ --- - name: OpenSearch Install on Debian + notify: Restart opensearch ansible.builtin.apt: name: - opensearch @@ -9,6 +10,7 @@ when: ansible_os_family == 'Debian' - name: OpenSearch Install on EL + notify: Restart opensearch ansible.builtin.dnf: name: - opensearch