add tags to tasks, add restart task

parent 903117f6
...@@ -25,16 +25,25 @@ ...@@ -25,16 +25,25 @@
apt_key: apt_key:
url: "{{ neo4j_gpg_key_url }}" url: "{{ neo4j_gpg_key_url }}"
state: present state: present
tags:
- install
- install:system-requirements
- name: add neo4j apt repository - name: add neo4j apt repository
apt_repository: apt_repository:
repo: "{{ neo4j_apt_repository }}" repo: "{{ neo4j_apt_repository }}"
state: present state: present
tags:
- install
- install:system-requirements
- name: install neo4j - name: install neo4j
apt: apt:
name: neo4j=2.3.4 name: "neo4j={{neo4j_version}}"
state: present state: present
tags:
- install
- install:base
- name: set to listen on all IPs - name: set to listen on all IPs
lineinfile: lineinfile:
...@@ -42,18 +51,32 @@ ...@@ -42,18 +51,32 @@
regexp: "{{ neo4j_address_settings_key }}=" regexp: "{{ neo4j_address_settings_key }}="
line: "{{ neo4j_address_settings_key }}=0.0.0.0" line: "{{ neo4j_address_settings_key }}=0.0.0.0"
state: present state: present
notify: restart neo4j tags:
- install
- install:configuration
- name: set to listen on specific port for https - name: set to listen on specific port for https
lineinfile: lineinfile:
dest: "{{ neo4j_server_config_file }}" dest: "{{ neo4j_server_config_file }}"
regexp: "{{ neo4j_https_settings_key }}=" regexp: "{{ neo4j_https_settings_key }}="
line: "{{ neo4j_https_settings_key }}={{ neo4j_https_port }}" line: "{{ neo4j_https_settings_key }}={{ neo4j_https_port }}"
notify: restart neo4j tags:
- install
- install:configuration
- name: set to listen on specific port for http - name: set to listen on specific port for http
lineinfile: lineinfile:
dest: "{{ neo4j_server_config_file }}" dest: "{{ neo4j_server_config_file }}"
regexp: "{{ neo4j_http_settings_key }}=" regexp: "{{ neo4j_http_settings_key }}="
line: "{{ neo4j_http_settings_key }}={{ neo4j_http_port }}" line: "{{ neo4j_http_settings_key }}={{ neo4j_http_port }}"
notify: restart neo4j tags:
- install
- install:configuration
- name: restart neo4j
service:
name: neo4j-service
state: restarted
tags:
- manage
- manage:start
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment