1
0
Fork 0

FreeBSD support with group 0 being wheel, clean up config-path

This commit is contained in:
Jason Wolfe 2014-10-13 23:15:30 -07:00
parent 7d216f395f
commit 5f6395fc43
3 changed files with 4 additions and 3 deletions

View File

@ -9,7 +9,7 @@ include:
{{ included_file }}:
file.managed:
- user: root
- group: root
- group: {{ pkgs.get('group', 'root') }}
- mode: 440
- template: jinja
- source: salt://sudoers/files/sudoers

View File

@ -7,7 +7,7 @@ sudo:
{{ pkgs.get('config-path', '/etc') }}/sudoers:
file.managed:
- user: root
- group: root
- group: {{ pkgs.get('group', 'root') }}
- mode: 440
- template: jinja
- source: salt://sudoers/files/sudoers

View File

@ -8,7 +8,8 @@
'Gentoo': {'sudo': 'app-admin/sudo'},
'Mint': {'sudo': 'sudo'},
'FreeBSD': {'sudo': 'sudo',
'config-path': '/usr/local/etc/'}
'config-path': '/usr/local/etc',
'group': 'wheel'}
} %}
{% if 'package_table' in pillar %}