Skip to content

Commit

Permalink
wrap variables expansions in double quotes
Browse files Browse the repository at this point in the history
CI/CD formatter added extra spaces. Using quotes to hopefully escape
that.
  • Loading branch information
keirwilliams committed Apr 16, 2024
1 parent 5e9e962 commit 01e050e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ansible/roles/onr-get/tasks/ensure-user-group.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
- name: Ensure {{ boe_install_group }} group exists
ansible.builtin.group:
name: { { boe_install_group } }
name: "{{ boe_install_group }}"

- name: Ensure {{ boe_install_user }} user exists
ansible.builtin.user:
name: { { boe_install_user } }
group: { { boe_install_group } }
name: "{{ boe_install_user }}"
group: "{{ boe_install_group }}"

0 comments on commit 01e050e

Please sign in to comment.