veyron/services/mgmt/node,veyron/tools/mgmt/nminstall: make self_install pass
through the --name flag
We want to be able to install a node manager that publishes itself. Note, this
won't work across updates (TODO left to address that).
While we're at it, also start fetching the agent binary during install.
Change-Id: Ie7d8d496155076d518f1500df254837f767ff4e1
diff --git a/services/mgmt/node/noded/main.go b/services/mgmt/node/noded/main.go
index f1b9a2d..eea0702 100644
--- a/services/mgmt/node/noded/main.go
+++ b/services/mgmt/node/noded/main.go
@@ -34,7 +34,11 @@
}
if *installSelf {
- if err := impl.SelfInstall(flag.Args(), os.Environ()); err != nil {
+ // If the user specified a name to publish as, pass that through
+ // to the installed node manager script.
+ // TODO(caprita): Make the flag survive updates.
+ args := append([]string{"--name=" + *publishAs}, flag.Args()...)
+ if err := impl.SelfInstall(args, os.Environ()); err != nil {
vlog.Errorf("SelfInstall failed: %v", err)
os.Exit(1)
}
@@ -68,6 +72,7 @@
if err := server.ServeDispatcher(*publishAs, dispatcher); err != nil {
vlog.Fatalf("Serve(%v) failed: %v", *publishAs, err)
}
+ vlog.VI(0).Infof("Node manager published as: %v", *publishAs)
impl.InvokeCallback(name)
// Wait until shutdown.