Skip to content

Commit ef7c319

Browse files
committed
Update linux plugins in doc
Signed-off-by: astraw99 <[email protected]>
1 parent 283f200 commit ef7c319

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

build_windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export GOOS=windows
77
export GOFLAGS="${GOFLAGS} -mod=vendor"
88
echo "$GOFLAGS"
99

10-
PLUGINS=$(cat plugins/windows_only.txt | dos2unix )
10+
PLUGINS=$(cat plugins/windows.txt | dos2unix )
1111
for d in $PLUGINS; do
1212
plugin="$(basename "$d").exe"
1313
echo "building $plugin"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
plugins/ipam/dhcp
2+
plugins/ipam/host-local
3+
plugins/ipam/static
24
plugins/main/bridge
35
plugins/main/host-device
46
plugins/main/ipvlan
57
plugins/main/loopback
68
plugins/main/macvlan
79
plugins/main/ptp
10+
plugins/main/tap
811
plugins/main/vlan
912
plugins/main/dummy
1013
plugins/meta/portmap
1114
plugins/meta/tuning
1215
plugins/meta/bandwidth
1316
plugins/meta/firewall
1417
plugins/meta/vrf
18+
plugins/meta/sbr

plugins/main/windows/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -e
33

4-
PLUGINS=$(cat plugins/windows_only.txt)
4+
PLUGINS=$(cat plugins/windows.txt)
55
for d in $PLUGINS; do
66
if [ -d "$d" ]; then
77
plugin="$(basename "$d").exe"
File renamed without changes.

test_windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ echo "Running tests"
1111

1212
PKGS="./pkg/hns/..."
1313

14-
PLUGINS=$(cat plugins/windows_only.txt | dos2unix )
14+
PLUGINS=$(cat plugins/windows.txt | dos2unix )
1515
for d in $PLUGINS; do
1616
PKGS="$PKGS ./$d/..."
1717
done

0 commit comments

Comments
 (0)