This file is indexed.

/usr/share/gocode/src/github.com/docker/libnetwork/cmd/dnet/flags.go is in golang-github-docker-libnetwork-dev 0.8.0-dev.2+git20170202.599.45b4086-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package main

import (
	"fmt"
	"os"

	"github.com/Sirupsen/logrus"
	"github.com/codegangsta/cli"
)

var (
	dnetFlags = []cli.Flag{
		cli.BoolFlag{
			Name:  "d, -daemon",
			Usage: "Enable daemon mode",
		},
		cli.StringFlag{
			Name:  "H, -host",
			Value: "",
			Usage: "Daemon socket to connect to",
		},
		cli.StringFlag{
			Name:  "l, -log-level",
			Value: "info",
			Usage: "Set the logging level",
		},
		cli.BoolFlag{
			Name:  "D, -debug",
			Usage: "Enable debug mode",
		},
		cli.StringFlag{
			Name:  "c, -cfg-file",
			Value: "/etc/default/libnetwork.toml",
			Usage: "Configuration file",
		},
	}
)

func processFlags(c *cli.Context) error {
	var err error

	if c.String("l") != "" {
		lvl, err := logrus.ParseLevel(c.String("l"))
		if err != nil {
			fmt.Printf("Unable to parse logging level: %s\n", c.String("l"))
			os.Exit(1)
		}
		logrus.SetLevel(lvl)
	} else {
		logrus.SetLevel(logrus.InfoLevel)
	}

	if c.Bool("D") {
		logrus.SetLevel(logrus.DebugLevel)
	}

	hostFlag := c.String("H")
	if hostFlag == "" {
		defaultHost := os.Getenv("DNET_HOST")
		if defaultHost == "" {
			// TODO : Add UDS support
			defaultHost = fmt.Sprintf("tcp://%s:%d", DefaultHTTPHost, DefaultHTTPPort)
		}
		hostFlag = defaultHost
	}

	epConn, err = newDnetConnection(hostFlag)
	if err != nil {
		if c.Bool("d") {
			logrus.Error(err)
		} else {
			fmt.Println(err)
		}
		os.Exit(1)
	}

	if c.Bool("d") {
		err = epConn.dnetDaemon(c.String("c"))
		if err != nil {
			logrus.Errorf("dnet Daemon exited with an error : %v", err)
			os.Exit(1)
		}
		os.Exit(1)
	}

	return nil
}