From 3a64316026ec7f1f56aa33ae25817cbaf1ac375d Mon Sep 17 00:00:00 2001 From: Mac Newbold <newbold@flux.utah.edu> Date: Fri, 12 Jul 2002 21:52:20 +0000 Subject: [PATCH] Fix flags passed to slothd. Before, -f meant send an immediate update (which wasn't the default behavior). The latest slothd updates (several weeks ago at least) changed the polarity of the flag. It still does the non-default thing, but now that makes it wait an hour before sending an update. So we remove -f so it does the right thing. --- sensors/slothd/sddeploy.in | 2 +- sensors/slothd/sdisrunning.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sensors/slothd/sddeploy.in b/sensors/slothd/sddeploy.in index b942a6797e..b494c34e9b 100755 --- a/sensors/slothd/sddeploy.in +++ b/sensors/slothd/sddeploy.in @@ -119,7 +119,7 @@ sub InstallSlothd($) { } print "starting slothd on $node\n"; - `$SSH $node /etc/testbed/slothd -f`; + `$SSH $node /etc/testbed/slothd`; if ($?) { return 1; } diff --git a/sensors/slothd/sdisrunning.in b/sensors/slothd/sdisrunning.in index 1606fea4c1..91ebcd8d97 100755 --- a/sensors/slothd/sdisrunning.in +++ b/sensors/slothd/sdisrunning.in @@ -95,7 +95,7 @@ sub check { my $ssh="sshtb -q"; my $node = shift; my $cmd1 = "ps auxwww | grep slothd | grep -v grep"; - my $cmd2 = "'rm -f /tmp/.sdpid ; /etc/testbed/slothd -f'"; + my $cmd2 = "'rm -f /tmp/.sdpid ; /etc/testbed/slothd'"; # Run an ssh command in a child process, protected by an alarm to # ensure that the ssh is not hung up forever if the machine is in # some funky state. -- GitLab