mirror of
https://github.com/saltstack-formulas/sudoers-formula.git
synced 2024-11-27 22:38:22 +01:00
Merge pull request #29 from irtnog/fix-visudo-path-freebsd
Use correct pathname of visudo on FreeBSD
This commit is contained in:
commit
93883cdcb6
@ -13,7 +13,7 @@ include:
|
||||
- mode: 440
|
||||
- template: jinja
|
||||
- source: salt://sudoers/files/sudoers
|
||||
- check_cmd: /usr/sbin/visudo -c -f
|
||||
- check_cmd: {{ sudoers.get('exec-prefix', '/usr/sbin') }}/visudo -c -f
|
||||
- context:
|
||||
included: True
|
||||
sudoers: {{ spec|json }}
|
||||
|
@ -11,7 +11,7 @@ sudo:
|
||||
- mode: 440
|
||||
- template: jinja
|
||||
- source: salt://sudoers/files/sudoers
|
||||
- check_cmd: /usr/sbin/visudo -c -f
|
||||
- check_cmd: {{ sudoers.get('exec-prefix', '/usr/sbin') }}/visudo -c -f
|
||||
- context:
|
||||
included: False
|
||||
- require:
|
||||
|
@ -11,5 +11,6 @@
|
||||
'Suse': {'pkg': 'sudo'},
|
||||
'FreeBSD': {'pkg': 'sudo',
|
||||
'config-path': '/usr/local/etc',
|
||||
'exec-prefix': '/usr/local/sbin',
|
||||
'group': 'wheel'},
|
||||
}, merge=salt['pillar.get']('sudoers:lookup')) %}
|
||||
|
Loading…
Reference in New Issue
Block a user