10 lines
293 B
Plaintext
10 lines
293 B
Plaintext
# Copyright (C) 2022 Vincent BENOIT <vincent.benoit@benserv.fr>
|
|
# Release under the MIT license (see COPYING.MIT for the terms)
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI += "file://rsyslog.conf"
|
|
|
|
do_install:append() {
|
|
install -m 0644 ${WORKDIR}/rsyslog.conf ${D}${sysconfdir}
|
|
}
|