Commit 5f9e06a
committed
82-salt-minion.yml: ARM64 Salt minion support via host_arch selection
Robert's added a custom ARM64 Windows Salt minion MSI, built by tracking
three still-open, unmerged upstream PRs (confirmed live against the
GitHub API, none merged as of 2026-08-10):
- saltstack/salt#70003 -- native Windows arm64 minion MSI support
- saltstack/relenv#318 -- Windows arm64 support (relenv, Salt's own
relocatable Python builder, a real dependency of the minion build)
- pymssql/pymssql#1013 -- native Windows arm64 wheel builds (a Salt
dependency needed for the build to complete on arm64 at all)
Renamed the existing MSI from the unsuffixed Salt-Minion-Setup.msi to
Salt-Minion-Setup-x86_64.msi, and wired 82-salt-minion.yml to select
Salt-Minion-Setup-{{ host_arch }}.msi -- reuses tasks/arch_facts.yml's
own host_arch fact and naming convention (x86_64/arm64/x86) rather than
inventing a new one, matching 50-binaries.yml's already-established
pattern for exactly this problem. Added a loud, explicit failure for any
architecture with no matching MSI at all, instead of a confusing win_copy
"file not found" further down the task list.
Also fixes a real harness gap check_playbook_dir_paths.py had: its own
tail-matching regex excluded "{"/"}" outright, so it silently truncated
and misreported the new host_arch-templated path as unresolvable -- a
false positive, not a real bug. Fixed generically (glob-match any embedded
{{ ... }} Jinja expression, require at least one real file to match)
rather than special-cased to this one file, so it holds for any future
playbook_dir path with a runtime-templated segment. Both the pass and
fail paths of the fix tested directly before landing.1 parent d2ce513 commit 5f9e06a
4 files changed
Lines changed: 81 additions & 7 deletions
File tree
- ansible/playbooks
- salt/playbooks
- windows_bootstrap/playbooks
- at_have_ryggen_fri
- bootstrap/web/windows
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
564 | 564 | | |
565 | 565 | | |
566 | 566 | | |
567 | | - | |
568 | | - | |
| 567 | + | |
| 568 | + | |
| 569 | + | |
569 | 570 | | |
570 | 571 | | |
571 | 572 | | |
| |||
Lines changed: 35 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
58 | 74 | | |
59 | 75 | | |
60 | 76 | | |
| |||
71 | 87 | | |
72 | 88 | | |
73 | 89 | | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
74 | 95 | | |
75 | 96 | | |
76 | 97 | | |
77 | 98 | | |
78 | 99 | | |
79 | 100 | | |
80 | 101 | | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
81 | 115 | | |
82 | 116 | | |
83 | | - | |
| 117 | + | |
84 | 118 | | |
85 | 119 | | |
86 | 120 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
52 | 66 | | |
53 | 67 | | |
54 | 68 | | |
| |||
58 | 72 | | |
59 | 73 | | |
60 | 74 | | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
61 | 93 | | |
62 | | - | |
63 | | - | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
64 | 102 | | |
65 | 103 | | |
66 | 104 | | |
| |||
84 | 122 | | |
85 | 123 | | |
86 | 124 | | |
87 | | - | |
88 | | - | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
89 | 128 | | |
90 | 129 | | |
91 | 130 | | |
| |||
File renamed without changes.
0 commit comments