Skip to content

Commit

Permalink
replace double quotes with single quote wherever possible
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Nemirowski <[email protected]>
  • Loading branch information
Sergio Nemirowski authored and 532910 committed Jul 20, 2022
1 parent 4560e4c commit 94af2ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---

# User and group for neo-go to run and own files
neogo__user: 'neo-go'
neogo__group: 'neo-go'

# Instance name to have multiple neo-go nodes on the same host
neogo__instance: ""
neogo__instance: ''

# User and group for neo-go to run and own files
neogo__user: "neo-go{{ neogo__instance }}"
neogo__group: "neo-go{{ neogo__instance }}"

# Directory for configuration files and wallets
neogo__conf_dir: "/etc/neo-go{{ neogo__instance }}"
Expand Down
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

- ansible.builtin.include_tasks: 'user.yml'
- ansible.builtin.include_tasks: user.yml

- name: Create configuration directory parent
ansible.builtin.file:
Expand All @@ -18,11 +18,11 @@
group: "{{ neogo__group }}"
mode: '0750'

- ansible.builtin.include_tasks: 'binary.yml'
- ansible.builtin.include_tasks: binary.yml

- ansible.builtin.include_tasks: 'wallet.yml'
- ansible.builtin.include_tasks: wallet.yml

- ansible.builtin.include_tasks: 'tls.yml'
- ansible.builtin.include_tasks: tls.yml

- name: Copy NeoGo config
ansible.builtin.template:
Expand Down

0 comments on commit 94af2ae

Please sign in to comment.