2020-01-20 14:09:26 +00:00
|
|
|
LICENSE = "GPLv2"
|
|
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
|
|
|
|
2020-01-31 12:28:54 +00:00
|
|
|
SRC_URI += " \
|
|
|
|
file://docker.init \
|
|
|
|
file://daemon.json \
|
|
|
|
"
|
2020-01-23 17:58:15 +00:00
|
|
|
|
2020-01-31 12:28:54 +00:00
|
|
|
do_install_append() {
|
|
|
|
install -d ${D}${sysconfdir}/
|
|
|
|
install -d ${D}${sysconfdir}/docker/
|
|
|
|
install -m 0600 ${WORKDIR}/daemon.json ${D}${sysconfdir}/docker/
|
|
|
|
}
|