Manage the Windows System PATH
salt.states.win_path.
absent
(name)¶Remove the directory from the SYSTEM path
index: where the directory should be placed in the PATH (default: 0)
范例:
'C:\sysinternals':
win_path.absent
salt.states.win_path.
exists
(name, index=None)¶Add the directory to the system PATH at index location
index: where the directory should be placed in the PATH (default: None) [Note: Providing no index will append directory to PATH and will not enforce its location within the PATH.]
范例:
'C:\python27':
win_path.exists
'C:\sysinternals':
win_path.exists:
index: 0