Skip to content

Commit a106b70

Browse files
committed
netd.go,build.sh: build static binaries
Signed-off-by: Cristian Staretu <[email protected]>
1 parent 29869c7 commit a106b70

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

netplugin/netd.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
"log/syslog"
2020
"net/url"
2121
"os"
22-
"os/user"
2322
"strings"
23+
"syscall"
2424
"time"
2525

2626
"github.com/contiv/netplugin/core"
@@ -181,8 +181,8 @@ func main() {
181181
}
182182

183183
// Make sure we are running as root
184-
usr, err := user.Current()
185-
if (err != nil) || (usr.Username != "root") {
184+
uid := syscall.Getuid()
185+
if uid != 0 {
186186
log.Fatalf("This process can only be run as root")
187187
}
188188

scripts/build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ else
2626
fi
2727

2828
echo $BUILD_VERSION >$VERSION_FILE
29-
30-
GOGC=1500 go install \
29+
GOGC=1500 CGO_ENABLED=0 go install \
30+
-a -installsuffix cgo \
3131
-ldflags "-X $PKG_NAME.version=$BUILD_VERSION \
3232
-X $PKG_NAME.buildTime=$BUILD_TIME \
3333
-X $PKG_NAME.gitCommit=$GIT_COMMIT \
34-
-s -w" \
34+
-s -w -d" -pkgdir /tmp/foo-cgo \
3535
-v $TO_BUILD

0 commit comments

Comments
 (0)