diff options
author | Romain Naour <romain.naour@gmail.com> | 2017-05-27 00:13:48 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-24 23:27:12 +0200 |
commit | 51a24f8d71afef70ef42ab3e062277f2d602a278 (patch) | |
tree | d2622d358d308f88f749a249db4a12d2e7170792 | |
parent | 3b7af7fca9fb600b2e86834c2b48cb97725fcb27 (diff) | |
download | buildroot-51a24f8d71afef70ef42ab3e062277f2d602a278.tar.gz buildroot-51a24f8d71afef70ef42ab3e062277f2d602a278.zip |
package/dhcp: dhcp server: select systemd tmpfile support when systemd is used
tmpfile support is optional in systemd but the dhcp server install it's
config file in $(TARGET_DIR)/usr/lib/tmpfiles.d directory when systemd
is used as init system.
So it seems that dhcp server require tmpfile support for systemd based
system.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/dhcp/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/dhcp/Config.in b/package/dhcp/Config.in index d09256aad2..5340830902 100644 --- a/package/dhcp/Config.in +++ b/package/dhcp/Config.in @@ -12,6 +12,7 @@ if BR2_PACKAGE_DHCP config BR2_PACKAGE_DHCP_SERVER bool "dhcp server" + select BR2_PACKAGE_SYSTEMD_TMPFILES if BR2_PACKAGE_SYSTEMD help DHCP server from the ISC DHCP distribution. |