Skip to content

Commit 6e95f79

Browse files
committed
Merge branch '3006.x' into merge/3007.x/3006.x
2 parents e872807 + c726a8b commit 6e95f79

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+846
-640
lines changed

changelog/65842.fixed.md

Lines changed: 1 addition & 0 deletions

changelog/66936.fixed.md

Lines changed: 1 addition & 0 deletions

changelog/67905.fixed.md

Lines changed: 1 addition & 0 deletions

changelog/67915.fixed.md

Lines changed: 1 addition & 0 deletions

changelog/67932.fixed.md

Lines changed: 1 addition & 0 deletions

changelog/67934.fixed.md

Lines changed: 1 addition & 0 deletions

changelog/67944.fixed.md

Lines changed: 1 addition & 0 deletions

changelog/67982.fixed.md

Lines changed: 2 additions & 0 deletions

pkg/debian/salt-common.links

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# permissions on /var/log/salt to permit adm group ownership
2-
salt-common: non-standard-dir-perm
3-
4-
# minor formatting error in table in man page
5-
salt-common: manpage-has-errors-from-man
6-
71
opt/saltstack/salt/salt-pip /usr/bin/salt-pip
82
opt/saltstack/salt/salt-call /usr/bin/salt-call
93
usr/share/bash-completion/completions/salt-common usr/share/bash-completion/completions/salt-call

pkg/windows/msi/Product.wxs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,13 @@ IMCAC - Immediate Custom Action - It's immediate
148148
Another application has exclusive access to the file \salt\var\log\salt\minion
149149
Please shut down the application
150150
-->
151-
<CustomAction Id="stopSalt" Script="vbscript">
152-
On error resume next
153-
Set objShell = CreateObject("WScript.Shell")
154-
objShell.Run "net stop salt-minion", 0, true
151+
<CustomAction Id="stopSalt" Script="jscript">
152+
try {
153+
var objShell = new ActiveXObject("WScript.Shell");
154+
objShell.Run("net stop salt-minion", 0, true);
155+
} catch (e) {
156+
// Handle error if needed
157+
}
155158
</CustomAction>
156159

157160
<!-- This is the import statement for the Custom Actions:

0 commit comments

Comments
 (0)