mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
714dc95159
Adding: - salt-key.bat - salt-master.bat - salt-run.bat - salt.bat Signed-off-by: Sergey Kizunov <sergey.kizunov@ni.com>
12 lines
262 B
Batchfile
12 lines
262 B
Batchfile
@ echo off
|
|
:: Script for invoking salt-key
|
|
:: Accepts all parameters that salt-key accepts
|
|
|
|
:: Define Variables
|
|
Set SaltDir=%~dp0
|
|
Set SaltDir=%SaltDir:~0,-1%
|
|
Set Python=%SaltDir%\bin\python.exe
|
|
Set Script=%SaltDir%\bin\Scripts\salt-key
|
|
|
|
"%Python%" "%Script%" %*
|