mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-25 19:10:42 +00:00
9 lines
241 B
Bash
Executable File
9 lines
241 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ "$NETWORK_MODE" = "virtio" ]; then
|
|
ip tuntap del mode tap dev $TAP
|
|
elif [ "$NETWORK_MODE" = "dpdk" ]; then
|
|
/usr/lib/scylla/dpdk_nic_bind.py -u $ETHPCIID
|
|
/usr/lib/scylla/dpdk_nic_bind.py -b $ETHDRV $ETHPCIID
|
|
fi
|