Skip to content

Commit

Permalink
no syslog and run-in-background in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
davies committed Feb 25, 2021
1 parent c5667fb commit 8d0dcbc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
9 changes: 0 additions & 9 deletions cmd/mount.go
Expand Up @@ -323,15 +323,6 @@ func mountFlags() *cli.Command {
ArgsUsage: "REDIS-URL MOUNTPOINT",
Action: mount,
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "d",
Aliases: []string{"background"},
Usage: "run in background",
},
&cli.BoolFlag{
Name: "no-syslog",
Usage: "disable syslog",
},
&cli.StringFlag{
Name: "metrics",
Value: ":9567",
Expand Down
9 changes: 9 additions & 0 deletions cmd/mount_unix.go
Expand Up @@ -53,6 +53,15 @@ func makeDaemon(name, mp string) error {

func mount_flags() []cli.Flag {
return []cli.Flag{
&cli.BoolFlag{
Name: "d",
Aliases: []string{"background"},
Usage: "run in background",
},
&cli.BoolFlag{
Name: "no-syslog",
Usage: "disable syslog",
},
&cli.StringFlag{
Name: "o",
Usage: "other FUSE options",
Expand Down

0 comments on commit 8d0dcbc

Please sign in to comment.