FreeBSD support with group 0 being wheel, clean up config-path
This commit is contained in:
parent
7d216f395f
commit
5f6395fc43
3 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue