Skip to content

Commit 63861c2

Browse files
committed
Corrected conflicts with bind branch
1 parent dde50cb commit 63861c2

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

netshare/drivers/nfs.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,6 @@ func (n nfsDriver) mountVolume(source, dest string, version int) error {
106106
var cmd string
107107

108108
options := merge(n.mountm.GetOptions(dest), n.nfsopts)
109-
for k, v := range options["nfsopts"] {
110-
fmt.Printf("k = %s :: v = %s\n", k, v)
111-
}
112109
opts := ""
113110
if val, ok := options[NfsOptions]; ok {
114111
opts = val

netshare/netshare.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ var (
9898
func Execute() {
9999
setupFlags()
100100
rootCmd.Long = fmt.Sprintf(NetshareHelp, Version, BuildDate)
101-
rootCmd.AddCommand(versionCmd, cifsCmd, nfsCmd, efsCmd, cephCmd, bindCmd)
101+
rootCmd.AddCommand(versionCmd, cifsCmd, nfsCmd, efsCmd, cephCmd)
102102
rootCmd.Execute()
103103
}
104104

0 commit comments

Comments
 (0)