Skip to content
Snippets Groups Projects
Commit 976023a8 authored by Leigh B. Stoller's avatar Leigh B. Stoller
Browse files

Make sure pubsubd is started for the remainder of boss-install (as

elvind was).
parent 4e6f131a
No related branches found
No related tags found
No related merge requests found
......@@ -1137,6 +1137,19 @@ Phase "event", "Setting up event system", sub {
};
};
Phase "pubsub", "Setting up pubsub system", sub {
# For elabinelab, be sure to kill off running event system. Harmless.
Phase "stopping", "Stopping pubsub system", sub {
if (ExecQuiet("killall -s pubsubd")) {
PhaseSkip("pubsubd not running");
}
ExecQuietFatal("$RCDIR/2.pubsubd.sh stop");
};
Phase "starting", "Starting pubsub system", sub {
ExecQuietFatal("$RCDIR/2.pubsubd.sh start");
};
};
#
# Build and install software. Note that I am not looking to see if its
# been done; I suppose we could touch a file to indicate that build has
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment