mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Move check for rtag to outermost-nesting in function
This commit is contained in:
parent
ac67c6b493
commit
340110b4b4
1 changed files with 3 additions and 3 deletions
|
@ -1228,10 +1228,7 @@ def installed(
|
|||
reinstall=reinstall,
|
||||
normalize=normalize,
|
||||
**kwargs)
|
||||
|
||||
refreshed = refreshed or refresh
|
||||
if os.path.isfile(rtag) and refreshed:
|
||||
os.remove(rtag)
|
||||
except CommandExecutionError as exc:
|
||||
ret = {'name': name,
|
||||
'changes': {},
|
||||
|
@ -1287,6 +1284,9 @@ def installed(
|
|||
failed_hold = [hold_ret[x] for x in hold_ret
|
||||
if not hold_ret[x]['result']]
|
||||
|
||||
if os.path.isfile(rtag) and refreshed:
|
||||
os.remove(rtag)
|
||||
|
||||
if to_unpurge:
|
||||
changes['purge_desired'] = __salt__['lowpkg.unpurge'](*to_unpurge)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue