-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[[ setup ]] new neo4j debian repo, more generic versions (#6)
- Loading branch information
1 parent
fad37af
commit da11f7c
Showing
3 changed files
with
13 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
#!/usr/bin/env bash | ||
|
||
wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add - | ||
echo 'deb https://debian.neo4j.org/repo stable/' | sudo tee -a /etc/apt/sources.list.d/neo4j.list | ||
# neo4j version family | ||
# see https://debian.neo4j.com/ for possible choices | ||
VERSION='3.5' | ||
|
||
wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add - | ||
echo 'deb https://debian.neo4j.com stable' $VERSION | sudo tee /etc/apt/sources.list.d/neo4j.list | ||
sudo apt-get update | ||
sudo apt-get install neo4j=3.5.9 | ||
sudo apt-get install neo4j |