Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
rpelisse committed Jan 30, 2025
1 parent 0b93b0d commit 54b62c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions molecule/static_cluster/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- name: "Run preparation common to all scenario"
ansible.builtin.include_tasks: ../prepare.yml
- name: "Create {{ activemq.service_name }} service user"
become: yes
become: "{{ activemq_install_requires_become | default(true) }}"
ansible.builtin.user:
name: amq-broker
home: /opt/amq/
Expand All @@ -26,10 +26,10 @@
owner: root
group: root
mode: 0444
become: true
become: "{{ activemq_install_requires_become | default(true) }}"
loop:
- "nfs/server-ca.crt"
- name: Run update_ca_trust
ansible.builtin.command: update-ca-trust
changed_when: False
become: true
become: "{{ activemq_install_requires_become | default(true) }}"

0 comments on commit 54b62c1

Please sign in to comment.