Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
fcc4f000
Commit
fcc4f000
authored
8 years ago
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move prompt code into daemon.go
License: MIT Signed-off-by:
Jeromy
<
why@ipfs.io
>
parent
fd732d2d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
31 deletions
+28
-31
cmd/ipfs/daemon.go
cmd/ipfs/daemon.go
+27
-3
repo/fsrepo/migrations/mfsr.go
repo/fsrepo/migrations/mfsr.go
+0
-27
test/sharness/t0066-migration.sh
test/sharness/t0066-migration.sh
+1
-1
No files found.
cmd/ipfs/daemon.go
View file @
fcc4f000
...
...
@@ -228,10 +228,15 @@ func daemonFunc(req cmds.Request, res cmds.Response) {
fmt.Println("Found old repo version, migrations need to be run.")
if !found {
err = migrate.TryMigrating(fsrepo.RepoVersion)
} else if domigrate {
err = migrate.RunMigration(fsrepo.RepoVersion)
domigrate = YesNoPrompt("Run migrations automatically? [y/N]")
}
if !domigrate {
res.SetError(fmt.Errorf("please run the migrations manually"), cmds.ErrNormal)
return
}
err = migrate.RunMigration(fsrepo.RepoVersion)
if err != nil {
res.SetError(err, cmds.ErrNormal)
return
...
...
@@ -594,3 +599,22 @@ func merge(cs ...<-chan error) <-chan error {
}()
return out
}
func YesNoPrompt(prompt string) bool {
var s string
for i := 0; i < 3; i++ {
fmt.Printf("%s ", prompt)
fmt.Scanf("%s", &s)
switch s {
case "y", "Y":
return true
case "n", "N":
return false
case "":
return false
}
fmt.Println("Please press either 'y' or 'n'")
}
return false
}
This diff is collapsed.
Click to expand it.
repo/fsrepo/migrations/mfsr.go
View file @
fcc4f000
...
...
@@ -59,30 +59,3 @@ type VersionFileNotFound string
func
(
v
VersionFileNotFound
)
Error
()
string
{
return
"no version file in repo at "
+
string
(
v
)
}
func
TryMigrating
(
tovers
int
)
error
{
if
!
YesNoPrompt
(
"Run migrations automatically? [y/N]"
)
{
return
fmt
.
Errorf
(
"please run the migrations manually"
)
}
return
RunMigration
(
tovers
)
}
func
YesNoPrompt
(
prompt
string
)
bool
{
var
s
string
for
i
:=
0
;
i
<
3
;
i
++
{
fmt
.
Printf
(
"%s "
,
prompt
)
fmt
.
Scanf
(
"%s"
,
&
s
)
switch
s
{
case
"y"
,
"Y"
:
return
true
case
"n"
,
"N"
:
return
false
case
""
:
return
false
}
fmt
.
Println
(
"Please press either 'y' or 'n'"
)
}
return
false
}
This diff is collapsed.
Click to expand it.
test/sharness/t0066-migration.sh
View file @
fcc4f000
...
...
@@ -27,7 +27,7 @@ test_expect_success "ipfs daemon --migrate=false fails" '
'
test_expect_success
"output looks good"
'
grep "
ipfs repo needs migration
" false_out
grep "
please run the migrations manually
" false_out
'
test_expect_success
"ipfs daemon --migrate=true runs migration"
'
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment