Skip to content

Commit

Permalink
fix(windows): group arg not supported on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmcloughlin committed Sep 11, 2020
1 parent 887d155 commit d61e671
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions salt/formulas.sls
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
{'makedirs': True}).items() %}
- {{ key }}: {{ value }}
- user: {{ salt_settings.rootuser }}
{%- if grains.kernel != 'Windows' %}
- group: {{ salt_settings.rootgroup }}
{%- endif %}
{%- endfor %}
{%- endif %}
Expand Down
14 changes: 9 additions & 5 deletions salt/osfamilymap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@
{%- set suse_testing_repo = ':/products:/next:/testing' if [osfamily_lower, osrelease] == ['suse', '15.2'] else '' %}

#from template-formula
{%- if grains.os == 'MacOS' %}
{%- set macos_rootuser = salt['cmd.run']("stat -f '%Su' /dev/console") %}
{%- set macos_rootgroup = salt['cmd.run']("stat -f '%Sg' /dev/console") %}
{%- if grains.os_family == 'MacOS' %}
{%- set rootuser = salt['cmd.run']("stat -f '%Su' /dev/console") %}
{%- set rootgroup = salt['cmd.run']("stat -f '%Sg' /dev/console") %}
{%- elif grains.os_family == 'Windows' %}
{%- set rootuser = salt['cmd.run']("id -un") %}
{%- endif %}


Debian:
pkgrepo: 'deb http://repo.saltstack.com/{{ py_ver_repr or 'apt' }}/{{ osfamily_lower }}/{{ osmajorrelease }}/amd64/{{ salt_release }} {{ oscodename }} main'
key_url: 'https://repo.saltstack.com/{{ py_ver_repr or 'apt' }}/{{ osfamily_lower }}/{{ osmajorrelease }}/amd64/{{ salt_release }}/SALTSTACK-GPG-KEY.pub'
Expand Down Expand Up @@ -130,6 +133,7 @@ Windows:
salt_minion: salt-minion{{ '-' ~ py_ver_repr if py_ver_repr else '' }}
config_path: 'C:\salt\conf'
minion_service: salt-minion
rootuser: {{ rootuser | d('') }}

MacOS:
salt_minion: salt
Expand All @@ -138,5 +142,5 @@ MacOS:
config_path: /private/etc/salt
minion_service: com.saltstack.salt.minion
## from template-formula
rootuser: {{ macos_rootuser | d('') }}
rootgroup: {{ macos_rootgroup | d('') }}
rootuser: {{ rootuser | d('') }}
rootgroup: {{ rootgroup | d('') }}
1 change: 0 additions & 1 deletion salt/osmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,4 @@ MacOS:
salt_minion_macos_plist_hash: 26b33da12e0d8960ee96b488c8352002c22a377c19bf3df3f986a1e49eca8b20

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

0 comments on commit d61e671

Please sign in to comment.