8 lines
199 B
YAML
8 lines
199 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add goroot to /etc/profile.d
|
|
when:
|
|
- ansible_os_family == 'RedHat'
|
|
ansible.builtin.set_fact:
|
|
pkg_src: "{{ pkg_src + ['go_profile_path'] }}"
|