-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kevin Coakley <[email protected]>
- Loading branch information
1 parent
4cdebb6
commit 8381a49
Showing
6 changed files
with
28 additions
and
29 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,5 @@ | ||
--- | ||
warn_list: | ||
- internal-error | ||
- fqcn | ||
skip_list: | ||
- yaml |
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,19 +1,19 @@ | ||
--- | ||
- name: Install Required RedHat Packages | ||
package: | ||
ansible.builtin.package: | ||
name: "{{ item }}" | ||
state: present | ||
with_items: | ||
- which | ||
|
||
- name: Add Neo4j Yum Repo | ||
yum_repository: | ||
ansible.builtin.yum_repository: | ||
name: neo4j | ||
description: Neo4j Yum Repo | ||
baseurl: https://yum.neo4j.com/stable | ||
gpgkey: https://debian.neo4j.com/neotechnology.gpg.key | ||
gpgcheck: true | ||
|
||
- name: Determine the neo4j package to install | ||
set_fact: | ||
ansible.builtin.set_fact: | ||
neo4j_package: neo4j{% if neo4j_edition == 'enterprise' %}-enterprise{% endif %}{% if neo4j_version is defined %}-{{ neo4j_version }}{% endif %} |
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