Commit 576f04e5 by Adam Palay

respond to comments

parent 32ff0dfe
......@@ -17,6 +17,7 @@
# vars are namespaced with the module name.
#
NEO4J_SERVER_NAME: "localhost"
NEO4J_AUTH_ENABLED: "true"
neo4j_gpg_key_url: https://debian.neo4j.org/neotechnology.gpg.key
neo4j_apt_repository: "deb http://debian.neo4j.org/repo stable/"
......
......@@ -53,11 +53,11 @@
- install
- install:base
- name: turn off authentication (we're accessing neo4j from behind a private vpn)
- name: enable or disable authentication
lineinfile:
dest: "{{ neo4j_server_config_file }}"
regexp: "dbms.security.auth_enabled="
line: "dbms.security.auth_enabled=false"
line: "dbms.security.auth_enabled={{ NEO4J_AUTH_ENABLED }}"
tags:
- install
- install:configuration
......
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