8 lines
208 B
YAML
8 lines
208 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add /usr/local/bin to PATH
|
|
when:
|
|
- ansible_os_family == 'RedHat'
|
|
ansible.builtin.set_fact:
|
|
pkg_src: "{{ pkg_src + ['usr_local_bin_profile_path'] }}"
|