File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ import (
19
19
"log/syslog"
20
20
"net/url"
21
21
"os"
22
- "os/user"
23
22
"strings"
23
+ "syscall"
24
24
"time"
25
25
26
26
"github.com/contiv/netplugin/core"
@@ -181,8 +181,8 @@ func main() {
181
181
}
182
182
183
183
// 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 {
186
186
log .Fatalf ("This process can only be run as root" )
187
187
}
188
188
Original file line number Diff line number Diff line change 26
26
fi
27
27
28
28
echo $BUILD_VERSION > $VERSION_FILE
29
-
30
- GOGC=1500 go install \
29
+ GOGC=1500 CGO_ENABLED=0 go install \
30
+ -a -installsuffix cgo \
31
31
-ldflags " -X $PKG_NAME .version=$BUILD_VERSION \
32
32
-X $PKG_NAME .buildTime=$BUILD_TIME \
33
33
-X $PKG_NAME .gitCommit=$GIT_COMMIT \
34
- -s -w" \
34
+ -s -w -d " -pkgdir /tmp/foo-cgo \
35
35
-v $TO_BUILD
You can’t perform that action at this time.
0 commit comments