mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
4a1d6f11b3
* Fix Github references from boostchicken to boostchicken-dev * Download CNI bridge script from upstream rather than fork The remote_install.sh script was retrieving the 05-cni-bridge.sh script from gtrabanco's fork, rather than the main repository. * Rename 05-cni-bridge.sh to 06-cni-bridge.sh
9 lines
138 B
Bash
9 lines
138 B
Bash
#!/bin/sh
|
|
|
|
## Create network bridge for CNI
|
|
|
|
ip link show cni0 > /dev/null 2>&1
|
|
if [ $? -ne 0 ]; then
|
|
ip link add cni0 type bridge
|
|
fi
|