unifios-utilities/on-boot-script/examples/udm-networking/on_boot.d/06-cni-bridge.sh
John Dorman df2a0f9144
moved to bash (#499)
thanks @kb9gxk
2023-02-22 21:44:27 -08:00

9 lines
140 B
Bash

#!/bin/bash
## Create network bridge for CNI
ip link show cni0 > /dev/null 2>&1
if [ $? -ne 0 ]; then
ip link add cni0 type bridge
fi