-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from dmuhamedagic/vagrant_update
dev: systemtests: make setting images right (-N and -C)
- Loading branch information
Showing
6 changed files
with
57 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
# | ||
|
||
echo "dbms.connector.http.address=0.0.0.0:7474" >> /etc/neo4j/neo4j.conf | ||
echo "cypher.forbid_shortestpath_common_nodes=false" >> /etc/neo4j/neo4j.conf | ||
# py2neo wants the config elsewhere | ||
mkdir -p /usr/share/neo4j/conf | ||
ln -s /etc/neo4j/neo4j.conf /usr/share/neo4j/conf | ||
chown -R neo4j /usr/share/neo4j/conf | ||
rm -fr /var/lib/neo4j/data/databases/graph.db /var/lib/neo4j/data/dbms/auth | ||
service neo4j start; sleep 10 | ||
assimcli genkeys | ||
rm -f "/usr/share/assimilation/crypto.d/#CMA#00001.secret" | ||
assimcli neo4jpass neo4j2 | ||
service neo4j stop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters