You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an option to the module that will prepend the specified path(s) to the existing path. If the path(s) already exists, then move it(them) to the top.
ISSUE TYPE
Feature Idea
COMPONENT NAME
ansible.windows.win_path
ADDITIONAL INFORMATION
In some cases, we need a path element to occur before System32. The existing code moves System32 later in the path, which could unintentionally cause executables in system32 to be overridden by other path elements.
- name: Ensure that updated OpenSSH executables are preferred over older ones in System32ansible.windows.win_path:
elements:
- 'C:\Program Files\OpenSSH'
- '%SystemRoot%\system32'state: prepend
The text was updated successfully, but these errors were encountered:
SUMMARY
Add an option to the module that will prepend the specified path(s) to the existing path. If the path(s) already exists, then move it(them) to the top.
ISSUE TYPE
COMPONENT NAME
ansible.windows.win_path
ADDITIONAL INFORMATION
In some cases, we need a path element to occur before System32. The existing code moves System32 later in the path, which could unintentionally cause executables in system32 to be overridden by other path elements.
The text was updated successfully, but these errors were encountered: