summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-common/recipes-core/dhcp-check/dhcp-check_git.bb
blob: 19ee407d7b14b9e47f38001cdad9b8b70dee7006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SUMMARY = "DHCP Check"
DESCRIPTION = "Script to check and restart network interface if DHCP fails to get an address"

S = "${WORKDIR}"
SRC_URI = "file://dhcp-check.sh \
           file://dhcp-check.service \
"

LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${INTELBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658"
RDEPENDS_${PN} += "bash"

inherit obmc-phosphor-systemd

FILES_${PN} += "${systemd_system_unitdir}/dhcp-check.service"

do_install() {
    install -d ${D}${bindir}
    install -m 0755 ${S}/dhcp-check.sh ${D}/${bindir}/dhcp-check.sh
}

SYSTEMD_SERVICE_${PN} += " dhcp-check.service"