Skip to content

Commit

Permalink
Fix for ansible issue 613 to support software installation on specifi…
Browse files Browse the repository at this point in the history
…c member_id
  • Loading branch information
chidanandpujar committed May 30, 2023
1 parent b553426 commit 4197431
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/jnpr/junos/utils/sw.py
Original file line number Diff line number Diff line change
Expand Up @@ -1127,9 +1127,9 @@ def _system_operation(
elif self._mixed_VC is True:
cmd.append(E("all-members"))
elif (
self._multi_VC_nsync is True
or self._multi_VC is True
and member_id is not None
self._multi_VC_nsync is True
or self._multi_VC is True
and member_id is not None
):
cmd.append(E("member", str(member_id)))
if in_min >= 0 and at is None:
Expand Down

0 comments on commit 4197431

Please sign in to comment.