diff --git a/supervisor/src/main.go b/supervisor/src/main.go index 33bf915..c7e7674 100644 --- a/supervisor/src/main.go +++ b/supervisor/src/main.go @@ -378,6 +378,13 @@ func main() { log.Fatalln(err) } + rijuInitVolume := exec.Command("riju-init-volume") + rijuInitVolume.Stdout = rijuInitVolume.Stdout + rijuInitVolume.Stderr = rijuInitVolume.Stderr + if err := rijuInitVolume.Run(); err != nil { + log.Fatalln(err) + } + blueUrl, err := url.Parse(fmt.Sprintf("http://localhost:%d", bluePort)) if err != nil { log.Fatalln(err)