-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from mgomersbach/add-gentoo-support
feat(map.jinja): add Gentoo support
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# SaltStack-generated demon configuration file for ISC dhcpd | ||
|
||
# If you require more than one instance of dhcpd you can create symbolic | ||
# links to dhcpd service like so | ||
# cd /etc/init.d | ||
# ln -s dhcpd dhcpd.foo | ||
# cd ../conf.d | ||
# cp dhcpd dhcpd.foo | ||
# Now you can edit dhcpd.foo and specify a different configuration file. | ||
# You'll also need to specify a pidfile in that dhcpd.conf file. | ||
# See the pid-file-name option in the dhcpd.conf man page for details. | ||
|
||
# If you wish to run dhcpd in a chroot, uncomment the following line | ||
# DHCPD_CHROOT="/var/lib/dhcp/chroot" | ||
|
||
# All file paths below are relative to the chroot. | ||
# You can specify a different chroot directory but MAKE SURE it's empty. | ||
|
||
# Specify a configuration file - the default is /etc/dhcp/dhcpd.conf | ||
# DHCPD_CONF="/etc/dhcp/dhcpd.conf" | ||
|
||
# Configure which interface or interfaces to for dhcpd to listen on. | ||
# List all interfaces space separated. If this is not specified then | ||
# we listen on all interfaces. | ||
DHCPD_IFACE="{{ ' '.join(salt['pillar.get']('dhcpd:listen_interfaces', [])) }}" | ||
|
||
# Insert any other dhcpd options - see the man page for a full list. | ||
# DHCPD_OPTS="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters