Skip to content

Commit

Permalink
fix(windows): git.latest(parallel:true) does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmcloughlin committed Sep 11, 2020
1 parent a36f2eb commit 0c591bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions salt/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ salt:
use_pip: false
clean_config_d_dir: true
restart_via_at: false
parallel: true # salt.git module argument

config_path: /etc/salt

Expand Down
4 changes: 2 additions & 2 deletions salt/formulas.sls
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{%- do processed_basedirs.append(basedir) %}
{{ basedir }}:
file.directory:
- parallel: {{ grains['saltversioninfo'] >= [2017, 7, 0] }}
- parallel: {{ salt_settings.parallel }}
{%- for key, value in salt['pillar.get']('salt_formulas:basedir_opts',
{'makedirs': True}).items() %}
- {{ key }}: {{ value }}
Expand All @@ -54,7 +54,7 @@
{{ gitdir_env }}:
git.latest:
- name: {{ baseurl }}/{{ f_name }}.git
- parallel: {{ grains['saltversioninfo'] >= [2017, 7, 0] }}
- parallel: {{ salt_settings.parallel }}
- target: {{ gitdir }}
{%- for key, value in options.items() %}
- {{ key }}: {{ value }}
Expand Down
3 changes: 3 additions & 0 deletions salt/osmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ MacOS:
master_service: com.saltstack.salt.master
salt_master_macos_plist_hash: 8435331b2d48ca8f0759f216e5b15ec9171a4216b1441328c732c6906728b7c9
salt_minion_macos_plist_hash: 26b33da12e0d8960ee96b488c8352002c22a377c19bf3df3f986a1e49eca8b20

Windows:
parallel: false # not supported on windows/cygwin

0 comments on commit 0c591bb

Please sign in to comment.