Skip to content

Commit

Permalink
common: default user/group for download should be current user
Browse files Browse the repository at this point in the history
  • Loading branch information
rpelisse committed Dec 20, 2023
1 parent b28a271 commit 837a2f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/amq_streams_common/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ amq_streams_common_archive_file: "kafka_{{ amq_streams_common_version }}.tgz"
amq_streams_common_rhn_product_archive_file_pattern: '^.*/amq-streams-[0-9.]*-bin.zip$'
amq_streams_common_download_url: "https://archive.apache.org/dist/kafka/{{ amq_streams_common_product_version }}/kafka_{{ amq_streams_common_version }}.tgz"
amq_streams_common_download_dir: "{{ lookup('env','PWD') | default('/opt') }}"
amq_streams_common_download_user: "{{ amq_streams_common_user | default('root') }}"
amq_streams_common_download_group: "{{ amq_streams_common_group | default('root') }}"
amq_streams_common_download_user: "{{ lookup('env','USER') | default('root') }}"
amq_streams_common_download_group: "{{ lookup('env','USER') | default('root') }}"
amq_streams_common_install_dir: /opt
amq_streams_common_offline_install: false
amq_streams_common_path_to_archive_file: "{{ amq_streams_common_download_dir }}/{{ amq_streams_common_archive_file }}"
Expand Down

0 comments on commit 837a2f3

Please sign in to comment.