mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix osarch
value in comparisson
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
ec7bcdf8e6
commit
5098cf9710
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ def _minion_count(grains):
|
|||
return int(env_count)
|
||||
# Default to 15 swarm minions
|
||||
count = 15
|
||||
if grains["osarch"] != "osarch":
|
||||
if grains["osarch"] != "aarch64":
|
||||
return count
|
||||
if grains["os"] != "Amazon":
|
||||
return count
|
||||
|
|
Loading…
Add table
Reference in a new issue