aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2022-12-25 11:14:04 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2022-12-25 11:14:04 -0800
commitd877a5aa5b105b17ced7be467fb4412a9ddd05aa (patch)
treea4d2d3a7b5a02a606b7689fe7c5d49bb5f830ced
parentAdding the saved args to the stop command (diff)
downloadnetifrc-d877a5aa5b105b17ced7be467fb4412a9ddd05aa.tar.gz
netifrc-d877a5aa5b105b17ced7be467fb4412a9ddd05aa.tar.bz2
netifrc-d877a5aa5b105b17ced7be467fb4412a9ddd05aa.zip
net/hsr: add Parallel Redundancy Protocol (PRP) support
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> Reference: https://github.com/gentoo/netifrc/pull/38
-rw-r--r--net/hsr.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/net/hsr.sh b/net/hsr.sh
index f5a427f..cbe35e9 100644
--- a/net/hsr.sh
+++ b/net/hsr.sh
@@ -21,6 +21,8 @@ hsr_pre_start()
eval hsr_slave1=\$hsr_slave1_${IFVAR}
eval hsr_slave2=\$hsr_slave2_${IFVAR}
eval hsr_supervision=\$hsr_supervision_${IFVAR}
+ eval hsr_version=\$hsr_version_${IFVAR}
+ eval hsr_proto=\$hsr_proto_${IFVAR}
if [ -z "${hsr_slave1}" ] || [ -z "${hsr_slave2}" ]; then
eerror "HSR interfaces require two slave interfaces to be set"
return 1
@@ -35,7 +37,10 @@ hsr_pre_start()
fi
ebegin "Creating HSR interface ${IFACE}"
- cmd="ip link add name "${IFACE}" type hsr slave1 ${hsr_slave1} slave2 ${hsr_slave2} ${hsr_supervision:+supervision }${hsr_supervision}"
+ cmd="ip link add name "${IFACE}" type hsr slave1 ${hsr_slave1} slave2 ${hsr_slave2}"
+ test -n "${hsr_supervision}" && cmd="${cmd} supervision ${hsr_supervision}"
+ test -n "${hsr_version}" && cmd="${cmd} version ${hsr_version}"
+ test -n "${hsr_proto}" && cmd="${cmd} proto ${hsr_proto}"
veinfo $cmd
if $cmd ; then
eend 0 && _up && set_interface_type hsr