13 lines
402 B
Plaintext
13 lines
402 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://iptables.rules"
|
|
|
|
FILES:{PN} += "${sysconfdir}/iptables/iptables.rules"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${sysconfdir}/iptables/
|
|
install -m 0644 ${WORKDIR}/iptables.rules ${D}${sysconfdir}/iptables/
|
|
}
|