diff options
| author | ckonstanski <carlos.konstanski@olo.com> | 2022-03-27 05:45:16 -0600 |
|---|---|---|
| committer | ckonstanski <carlos.konstanski@olo.com> | 2022-03-27 05:45:16 -0600 |
| commit | 6b24c8845b9ce027d96732c6281183f69186d204 (patch) | |
| tree | 4645114d8e0397d6e87bb582011ea31607ae455c /bootstrap/run_salt.sh | |
| parent | 1694f0d9e0b6d65a46acff7a42c46313632a7d18 (diff) | |
local_build default to false and remove python version check
Diffstat (limited to 'bootstrap/run_salt.sh')
| -rwxr-xr-x | bootstrap/run_salt.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/run_salt.sh b/bootstrap/run_salt.sh index 3630405..d36e5d5 100755 --- a/bootstrap/run_salt.sh +++ b/bootstrap/run_salt.sh @@ -2,7 +2,7 @@ working_dir="${1}" build_basedir="${2}" -local_build="${3}" +local_build="${3:-false}" salt_running_p() { ps -ef | grep -F "salt-call" | grep -v "grep" @@ -13,7 +13,7 @@ while salt_running_p; do sleep 5 done -python $(which salt-call) \ +salt-call \ --local \ --pillar-root=${working_dir}/pillar \ --file-root=${working_dir}/salt \ |
