diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-24 14:48:28 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-24 14:48:28 +0100 |
| commit | 6f81baaf47e3f47b131ec2b1c6c5f7d062a48d84 (patch) | |
| tree | 698f299a6e0ca3b8d115d5688a9eda22a961a35f /package/dhcp/S80dhcp-server | |
| parent | c4486e8c947e728b663eb2ac1c0286077129445f (diff) | |
| download | buildroot-6f81baaf47e3f47b131ec2b1c6c5f7d062a48d84.tar.gz buildroot-6f81baaf47e3f47b131ec2b1c6c5f7d062a48d84.zip | |
dhcp: read /etc/default/dhcpd, not /etc/default/dhcpd.conf
All daemons that read a file from /etc/default/ have it named just
after the name of daemon, without any extension. This commit fixes the
dhcp package to do the same.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/dhcp/S80dhcp-server')
| -rwxr-xr-x | package/dhcp/S80dhcp-server | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/dhcp/S80dhcp-server b/package/dhcp/S80dhcp-server index 356e73565a..06b7ab1d9f 100755 --- a/package/dhcp/S80dhcp-server +++ b/package/dhcp/S80dhcp-server @@ -8,7 +8,7 @@ INTERFACES="" # Allow a few customizations from a config file -test -r /etc/default/dhcpd.conf && . /etc/default/dhcpd.conf +test -r /etc/default/dhcpd && . /etc/default/dhcpd # Sanity checks test -f /usr/sbin/dhcpd || exit 0 |

