From bcc67fb5f208b1491edb022eb47f9f6199c75449 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Wed, 22 Feb 2017 16:41:57 +0100 Subject: [PATCH] library/roles/orientdb/tasks/main.yml: Add the orientdb_config tag to the task that installs the orientdb configuration. --- orientdb/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/orientdb/tasks/main.yml b/orientdb/tasks/main.yml index 40353c94..0a276ead 100644 --- a/orientdb/tasks/main.yml +++ b/orientdb/tasks/main.yml @@ -58,6 +58,7 @@ template: src={{ item }}.j2 dest={{ orientdb_install_dir }}/config/{{ item }} owner={{ orientdb_user }} group={{ orientdb_user }} mode=0640 with_items: '{{ orientdb_configuration_files }}' notify: Restart orientdb + tags: [ 'orientdb', 'orientdb_config' ] - name: Ensure that the service is enabled and running service: name=orientdb state=started enabled=yes