Skip to content
Snippets Groups Projects
Commit b9a8cfa9 authored by Kaarle Ritvanen's avatar Kaarle Ritvanen
Browse files

main/iptables: fix sbin paths in init scripts

fixing a regression in commit c49f2fa7
parent c0173b06
No related branches found
No related tags found
No related merge requests found
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=iptables
pkgver=1.8.10
pkgrel=4
pkgrel=5
pkgdesc="Linux kernel firewall, NAT and packet mangling tools"
url="https://www.netfilter.org/projects/iptables/index.html"
arch="all"
......@@ -123,9 +123,9 @@ openrc() {
sha512sums="
71e6ed2260859157d61981a4fe5039dc9e8d7da885a626a4b5dae8164c509a9d9f874286b9468bb6a462d6e259d4d32d5967777ecefdd8a293011ae80c00f153 iptables-1.8.10.tar.xz
ac78898c2acbe66ed8d32a06f41ff08cde7c22c3df6dfec6bc89a912d2cef2bde730de19d25a5407886d567cb0972a0b7bde7e6b18a34c4511495b4dad3b90ad use-sh-iptables-apply.patch
a9d0bccfdacfad65182abe5f4bba18ae0f538c1d476a8fc6f33e228d9b0ee6caf29c37081d070c2f9e411e9057309df5e3300618314b461dac529bfc43d89bb0 iptables.initd
5e216351e1295ccd9db13b22720a4e5502584fe8bceacfc5c02e59ac9bf700be7b0128cf4845e717837270dbe1561e1a66b6fb82c8e0e55d56aa4ff89108b9f3 iptables.initd
cb7fecd5cab2c78bd3f215a41f39ec11c37eb360efbe83982378a0e647e0aa9dc0b7ec915a5b5081aa2f7747464787e69404aa15ba15a063c32cb8fb7dd13d1e iptables.confd
0897a7a22f8b700f7f1f5c355ad6cbf39740e44d6c962af99e479978d8a2d556ca7fe4e31f238829046b4a871ce0b5fd52e2544f1361d15dd1ea3e33992646c4 ip6tables.confd
6f3a7e3f6cedff9e73aa0fb959c92a93b2c484ae3c9b48d9522d1ee1e5ee4e2af12be8c3d73b932fe7f5716b5dd1c5cdfde729a808c0ae9a7dbd4ceec93e5a32 ebtables.initd
0fa11231240c3a4a6c23e425b29a8e917bff4ab1283d971d7bcc134840c8a25aabfd2fcfb8fe8aeea866ac3895012554055f0c64a7cc0a649f581088fe5226fa ebtables.initd
1623109d7b564b817904e35b6c6964ce84fe123a8ae1b656944648a39cfef719431cfad313b48eb36ae53a0d1a6b388a5caec1a990448d02f77e5d12b1f7ee9d ebtables.confd
"
......@@ -6,7 +6,7 @@
extra_commands="save reload"
extra_started_commands="panic"
ebtables_bin="/sbin/ebtables"
ebtables_bin="/usr/sbin/ebtables"
ebtables_save=${EBTABLES_SAVE}
ebtables_tables=$(grep -E '^ebtable_' /proc/modules | cut -f1 -d' ' | sed s/ebtable_//)
if [ "$ebtables_tables" == "" ] ; then
......
......@@ -17,7 +17,7 @@ case "$iptables_name" in
*) iptables_name="iptables" ;;
esac
iptables_bin="/sbin/${iptables_name}"
iptables_bin="/usr/sbin/${iptables_name}"
case ${iptables_name} in
iptables)
#shellcheck disable=SC2153
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment