Skip to content
Snippets Groups Projects
Commit 2d5a1f02 authored by Kirk Webb's avatar Kirk Webb
Browse files

Created a new RC file for plab daemon startup per Rob's suggetion.

It isn't installed by the "install" make target.
parent bb34324d
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#
# Utah Network Testbed plab startup
#
if [ -x @prefix@/sbin/plabdaemon ]; then
echo -n " plabrenew"
@prefix@/sbin/plabdaemon -v renew
echo -n " plabgetfree"
@prefix@/sbin/plabdaemon -v getfree
fi
if [ -x @prefix@/sbin/plabmonitord ]; then
echo -n " plabmonitord"
@prefix@/sbin/plabmonitord
fi
...@@ -72,19 +72,6 @@ if [ -x @prefix@/sbin/eventsys_start ]; then ...@@ -72,19 +72,6 @@ if [ -x @prefix@/sbin/eventsys_start ]; then
@prefix@/sbin/eventsys_start @prefix@/sbin/eventsys_start
fi fi
if [ -x @prefix@/sbin/plabdaemon ]; then
echo -n " plabrenew"
@prefix@/sbin/plabdaemon -v renew
echo -n " plabgetfree"
@prefix@/sbin/plabdaemon -v getfree
fi
if [ -x @prefix@/sbin/plabmonitord ]; then
echo -n " plabmonitord"
@prefix@/sbin/plabmonitord
fi
# #
# Could trigger experiment creation, so make sure everything else # Could trigger experiment creation, so make sure everything else
# is setup first; i.e., run this last! # is setup first; i.e., run this last!
......
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