Skip to content

Commit

Permalink
packer-rocm/amdgpu_install: assume LANG=C for script+stdout/stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlay2amd committed Oct 26, 2024
1 parent d5199ff commit fee120e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packer-rocm/playbooks/amdgpu_install.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
- name: Manage 'amdgpu-install'
hosts: default
environment: # may be superfluous for your environment; mapped through Packer HCL with 'ansible_env_vars'
environment:
LANG: C # some tasks process std{out,err}, aim for consistency
# may be superfluous for your environment; mapped through Packer HCL with 'ansible_env_vars'
http_proxy: "{{ lookup('ansible.builtin.env', 'http_proxy') | default(omit) }}"
https_proxy: "{{ lookup('ansible.builtin.env', 'https_proxy') | default(omit) }}"
no_proxy: "{{ lookup('ansible.builtin.env', 'no_proxy') | default(omit) }}"
Expand Down

0 comments on commit fee120e

Please sign in to comment.