ifplugd: only install default action if not provided in skeleton

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Danomi Manchego 2014-03-29 20:53:40 -04:00 committed by Thomas Petazzoni
parent e977719634
commit b1ec31a4dd

View File

@ -21,12 +21,14 @@ ifeq ($(BR2_PACKAGE_BUSYBOX),y)
endif
define IFPLUGD_INSTALL_FIXUP
@if [ ! -f $(TARGET_DIR)/etc/ifplugd/ifplugd.conf ]; then \
if [ ! -f $(TARGET_DIR)/etc/ifplugd/ifplugd.conf ]; then \
$(INSTALL) -D $(@D)/conf/ifplugd.conf $(TARGET_DIR)/etc/ifplugd/ifplugd.conf; \
$(SED) 's^\(ARGS=.*\)w^\1^' $(TARGET_DIR)/etc/ifplugd/ifplugd.conf; \
fi
$(INSTALL) -D -m 0755 $(@D)/conf/ifplugd.action \
$(TARGET_DIR)/etc/ifplugd/ifplugd.action
if [ ! -f $(TARGET_DIR)/etc/ifplugd/ifplugd.action ]; then \
$(INSTALL) -D -m 0755 $(@D)/conf/ifplugd.action \
$(TARGET_DIR)/etc/ifplugd/ifplugd.action
fi
$(INSTALL) -D -m 0755 $(@D)/conf/ifplugd.init \
$(TARGET_DIR)/etc/init.d/S45ifplugd
# don't use bash for init script