mirror of
https://github.com/restic/restic.git
synced 2025-08-24 16:07:28 +00:00
Signal readiness of mount to potential callers
This commit is contained in:
@@ -20,13 +20,17 @@ import (
|
|||||||
|
|
||||||
type CmdMount struct {
|
type CmdMount struct {
|
||||||
global *GlobalOptions
|
global *GlobalOptions
|
||||||
|
ready chan struct{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
_, err := parser.AddCommand("mount",
|
_, err := parser.AddCommand("mount",
|
||||||
"mount a repository",
|
"mount a repository",
|
||||||
"The mount command mounts a repository read-only to a given directory",
|
"The mount command mounts a repository read-only to a given directory",
|
||||||
&CmdMount{global: &globalOpts})
|
&CmdMount{
|
||||||
|
global: &globalOpts,
|
||||||
|
ready: make(chan struct{}, 1),
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
@@ -76,6 +80,8 @@ func (cmd CmdMount) Execute(args []string) error {
|
|||||||
cmd.global.Printf("Now serving %s under %s\n", repo.Backend().Location(), mountpoint)
|
cmd.global.Printf("Now serving %s under %s\n", repo.Backend().Location(), mountpoint)
|
||||||
cmd.global.Printf("Don't forget to umount after quitting !\n")
|
cmd.global.Printf("Don't forget to umount after quitting !\n")
|
||||||
|
|
||||||
|
cmd.ready <- struct{}{}
|
||||||
|
|
||||||
err = fs.Serve(c, &root)
|
err = fs.Serve(c, &root)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
Reference in New Issue
Block a user