Merge pull request #11 from 0xf10e/master

FreeBSD-Support and a Note
This commit is contained in:
Forrest 2015-09-29 08:19:04 -07:00
Родитель a86eacf292 b03e88dc3f
Коммит 59823038fb
3 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -19,6 +19,12 @@ Available states
Install and turn on dhcpd.
.. note::
To have more pythonic variables the dashes ('-') in their names
are replaced with underscores ('_') so 'dynamic-bootp' becomes
'dynamic_bootp' in pillar[dhcpd].
``dhcpd.config``
----------------

Просмотреть файл

@ -9,7 +9,11 @@ dhcpd.conf:
- source: salt://dhcpd/files/dhcpd.conf
- template: jinja
- user: root
{% if 'BSD' in salt['grains.get']('os') %}
- group: wheel
{% else %}
- group: root
{% endif %}
- mode: 644
- watch_in:
- service: dhcpd

Просмотреть файл

@ -9,4 +9,9 @@
'service': 'dhcpd',
'config': '/etc/dhcp/dhcpd.conf',
},
'FreeBSD': {
'server': 'isc-dhcp43-server',
'service': 'isc-dhcpd',
'config': '/usr/local/etc/dhcpd.conf'
},
}, merge=salt['pillar.get']('dhcpd:lookup')) %}