<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/16115" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2017-10-06T15:19:02-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/16115</id>

		<entry>
		<author><name><![CDATA[CP1832]]></name></author>
		<updated>2017-09-20T00:26:29-04:00</updated>

		<published>2017-09-20T00:26:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106447#p106447</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106447#p106447"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106447#p106447"><![CDATA[
Now the script is working and killing the stoned eggdrop.<div class="codebox"><p>Code: </p><pre><code>Pidfile pid.user is old... (Havn't been touched in 10 minutes)Checking for pid.user~... Not found!Creating new pid.user~... Pidfile pid.user is old... (Havn't been touched in 20 minutes)Checking for pid.user~... Found!Validating pid.user~... Valid!Restarting...Read pid: 8467 Status: Exists!Checking if it matches our eggdrop: Matched! - killing...</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12450">CP1832</a> — Wed Sep 20, 2017 12:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CP1832]]></name></author>
		<updated>2017-09-18T09:39:02-04:00</updated>

		<published>2017-09-18T09:39:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106446#p106446</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106446#p106446"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106446#p106446"><![CDATA[
Thanks again nml375, I've already modified my .tcl accordingly and will let you know how it works out once the bot gets stoned.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12450">CP1832</a> — Mon Sep 18, 2017 9:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2017-09-15T13:39:50-04:00</updated>

		<published>2017-09-15T13:39:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106441#p106441</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106441#p106441"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106441#p106441"><![CDATA[
Hi again,<br>Thanks for the input (and for correcting my incorrect options for "ps", must have been thinking of "ls").<br>From what I can tell, the following test is failing:<div class="codebox"><p>Code: </p><pre><code>set fileID [open "/proc/${botpid}/cmdline" "RDONLY"] gets $fileID temp close $fileID if {[string compare "$temp" "eggdrop\000./${configfile}"] == 0} {</code></pre></div>It's a check that we're actually killing the correct process, by investigating the command line that started the process. Looking at the output from "ps aux", the command line is "./eggdrop eggdrop.conf", whereas the botchk-script expects it to be "eggdrop ./eggdrop.conf".<br><br>I do have an idea to improve this test, though it is untested:<div class="codebox"><p>Code: </p><pre><code>set fileID [open "/proc/${botpid}/cmdline" "RDONLY"] gets $fileID temp close $fileID set temp [split $temp "\000"]set executable [file tail [lindex $temp 0]]set config [file tail [lindex $temp 1]]if {$executable eq "eggdrop" &amp;&amp; $config eq $configfile} {</code></pre></div>Should be more tolerant, as it strips any paths from both command and argument (the config file) before comparing.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Fri Sep 15, 2017 1:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CP1832]]></name></author>
		<updated>2017-09-15T10:07:13-04:00</updated>

		<published>2017-09-15T10:07:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106440#p106440</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106440#p106440"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106440#p106440"><![CDATA[
Here's the output from my crontab's log file:<div class="codebox"><p>Code: </p><pre><code>Pidfile pid.user is old... (Havn't been touched in 10 minutes)Checking for pid.user~... Not found!Creating new pid.user~... Pidfile pid.user is old... (Havn't been touched in 20 minutes)Checking for pid.user~... Found!Validating pid.user~... Valid!Restarting...Read pid: 15720 Status: Exists!Checking if it matches our eggdrop: Eggdrop v1.8.0+infiniteinfo (C) 1997 Robey Pointer (C) 2010 Eggheads</code></pre></div>Here's the ps -l output<div class="codebox"><p>Code: </p><pre><code>ps -lF S   UID   PID  PPID  C PRI  NI ADDR SZ WCHAN  TTY          TIME CMD4 S  1483 16799 16628  0  82   2 -  1000 -      pts/256  00:00:00 bash0 R  1483 19387 16799  0  82   2 -   726 -      pts/256  00:00:00 ps</code></pre></div>And here's the ps aux output:<div class="codebox"><p>Code: </p><pre><code>ps aux | grep -i useruser    2605  0.0  0.1  15684  5036 ?        SN   13:20   0:01 ./eggdrop eggdrop.confuser   15720  0.0  0.1  24676  6200 ?        SN   Sep13   0:35 ./eggdrop eggdrop.confuser   16799  0.0  0.0   4000  2036 pts/256  SN   14:02   0:00 -bashuser   20312  0.0  0.0   3140  1000 pts/256  RN+  14:05   0:00 ps auxuser   20313  0.0  0.0   2744   580 pts/256  SN+  14:05   0:00 grep --colour=auto -i useruser   24480  0.0  0.2  18684  8264 ?        SN   Sep14   0:40 ./eggdrop eggdrop.conf</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12450">CP1832</a> — Fri Sep 15, 2017 10:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CP1832]]></name></author>
		<updated>2017-09-13T09:44:15-04:00</updated>

		<published>2017-09-13T09:44:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106438#p106438</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106438#p106438"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106438#p106438"><![CDATA[
<blockquote class="uncited"><div>The console output from running the botchk.tcl script would be very helpful, as well as a detailed process listing (ps -l) to see the status of the process in question.</div></blockquote>I've already modified my crontab to be:<div class="codebox"><p>Code: </p><pre><code>0,10,20,30,40,50 * * * * tclsh /home/user/eggdrop/botchk.tcl &gt;&gt; /home/user/eggdrop/botchk.log 2&gt;&amp;1</code></pre></div>So the next time my bot gets brain freeze I'll be logging the output.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12450">CP1832</a> — Wed Sep 13, 2017 9:44 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2017-09-12T14:05:10-04:00</updated>

		<published>2017-09-12T14:05:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106437#p106437</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106437#p106437"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106437#p106437"><![CDATA[
The console output from running the botchk.tcl script would be very helpful, as well as a detailed process listing (ps -l) to see the status of the process in question.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Tue Sep 12, 2017 2:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CP1832]]></name></author>
		<updated>2017-09-12T10:46:35-04:00</updated>

		<published>2017-09-12T10:46:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106436#p106436</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106436#p106436"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106436#p106436"><![CDATA[
I can confirm that the watchdog script is working, it's noticing when the eggdrop is frozen and starts a new instance, but for some reason it's not killing the previous instance. Does anyone have a clue why this script section isn't killing the frozen eggdrop?<div class="codebox"><p>Code: </p><pre><code>proc restart_bot {} { global pidfile userfile configfile set fileID [open $pidfile "RDONLY"] set temp [gets $fileID botpid] close $fileID file delete $pidfile if {[file exists ${pidfile}~]} {  file delete ${pidfile}~ } if {$temp &gt; 0} {  puts stdout "Read pid: $botpid Status: " nonewline  if {[file exists "/proc/$botpid"] &amp;&amp; [file owned "/proc/$botpid"]} {   puts stdout "Exists!\nChecking if it matches our eggdrop: "   set fileID [open "/proc/${botpid}/cmdline" "RDONLY"]   gets $fileID temp   close $fileID   if {[string compare "$temp" "eggdrop\000./${configfile}"] == 0} {    puts stdout "Matched! - killing..."    puts stdout [exec kill -9 $botpid]   }  } {   puts stdout "no such pid!"  } } start_bot}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12450">CP1832</a> — Tue Sep 12, 2017 10:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CP1832]]></name></author>
		<updated>2017-10-06T15:19:02-04:00</updated>

		<published>2017-09-07T10:32:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106429#p106429</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106429#p106429"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106429#p106429"><![CDATA[
Well, I ran into the same issues as the original poster (my eggdrop freezes from time and time and won't reconnect, nor die), so I tried using nml375 scripts. The problem I ran into is that I found no way to alter the pid file's atime, so I modified watchdog.tcl to read and write back the pid into the pid file and then modified botchk.tcl to check the file's mtime. Here's watchdog.tcl:<div class="codebox"><p>Code: </p><pre><code>#Watchdog part of botchk.tcl#Simply makes eggdrop update the accesstime for it's pidfile#on a regular basis... (kinda like "touch")#Settings:# botpid [path/]pid.bot#  Tells the script which file that is the pidfile...#  This should be autodetected by the script at startup,#  but under certain circumstances, it might fail..#  IF it does fail, just set this var manually, and it'll#  work just fine :)#  PS. The name of the pidfile is pid.$botnet-nick, or; if#  botnet-nick isn't set; pid.$nick   DS#set botpid pid.lamestbotif {![info exists botpid]} { if {[info exists botnet-nick] &amp;&amp; ${botnet-nick} != ""} {  set botpid "pid.${botnet-nick}"  putlog "Setting botpid to $botpid using \$botnet-nick" } elseif {[info exists nick] &amp;&amp; $nick != ""} {  set botpid "pid.$nick"  putlog "Setting botpid to $botpid using \$nick" } else {  putlog "Unable to determine the name of the pid-file!\nPlease check your config-file or watchdog.tcl script..." }}proc touch {file} { set in [open $file r] set pid [gets $in] close $in set out [open $file w] puts $out $pid close $out}proc watchdog {min hour day month year} { global botpid touch $botpid}foreach bind [binds watchdog] {lassign $bind type flags mask num proc; unbind $type $flags $mask $proc}bind time - "* * * * *" watchdogputlog "Loading bot watchdog"</code></pre></div>And here's the modified botchk.tcl:<div class="codebox"><p>Code: </p><pre><code>#!/usr/bin/tclsh### settings ####pidfile "pidfile of bot"#set pidfile pid.botname#userfile "userfile of bot"#set userfile botname#configfile "configfile of bot"#set configfile eggdrop.conf#botdir "home of your eggdrop"#set botdir /home/user/eggdrop#silent 0/1# Should we write eggdrop's output from it's startup to stdout?set silent 0#lockfile "file to prevent start of your eggdrop"# Use this whenever you want to stop your bot for a longer while...set lockfile /home/somewhere/some.lock### Code ####Lets just check that our friendly user supplied all required settings :)foreach {var what} [list pidfile "Name of pidfile" userfile "Name of userfile" configfile "Name of configfile" botdir "home of your eggdrop" silent "Whether or not to write any output from eggdrop to stdout during startup of bot" lockfile "file to prevent start of your eggdrop"] { if {![info exists $var]} {  puts stdout "Hey buddy!\nYou messed up while configurating the botchk.tcl script!"  puts stdout "Variable not set: $var - Explanation: $what"  exit 1 }}#Lets check whether we should check the bot at all...if {[file exists $lockfile]} { exit 0}#proc: start_bot#args: none#desc: Checks whether the userfile exists#      (if not, it will try to restore it from#      backups, etc...) and then start up#      the bot again.#      Writes the output from eggdrop to stdout...#      (if selected)proc start_bot {} { global pidfile userfile configfile silent if {![file exists $userfile]} {  if {[file exists "${userfile}~new"]} {   file copy "${userfile}~new" $userfile  } elseif {[file exists "${userfile}~bak"]} {   file copy "${userfile}~bak" $userfile  } else {   puts stdout "Error: Can't find any userfile or backupfile!"   exit 1  } } if {[file executable $configfile]} {  catch {exec ./${configfile}} temp } {  catch {exec ./eggdrop $configfile} temp } if {$silent == 0} {  puts stdout $temp }}#proc: restart_bot#args: none#desc: Checks if there's a bot running (suspected zombie),#      if so it kills it, then calls start_botproc restart_bot {} { global pidfile userfile configfile set fileID [open $pidfile "RDONLY"] set temp [gets $fileID botpid] close $fileID file delete $pidfile if {[file exists ${pidfile}~]} {  file delete ${pidfile}~ } if {$temp &gt; 0} {  puts stdout "Read pid: $botpid Status: " nonewline  if {[file exists "/proc/$botpid"] &amp;&amp; [file owned "/proc/$botpid"]} {   puts stdout "Exists!\nChecking if it matches our eggdrop: "   set fileID [open "/proc/${botpid}/cmdline" "RDONLY"]   gets $fileID temp   close $fileID   set temp [split $temp "\000"]    set executable [file tail [lindex $temp 0]]    set config [file tail [lindex $temp 1]]    if {$executable eq "eggdrop" &amp;&amp; $config eq $configfile} {    puts stdout "Matched! - killing..."    puts stdout [exec kill -9 $botpid]   }  } {   puts stdout "no such pid!"  } } start_bot}#Lets go to bot's home...cd $botdir#Check if the pidfile exists, if not, call start_botif {![file exists $pidfile]} { puts stdout "Pidfile $pidfile does not exists!\nGuess bot is not running... Better start her up..." start_bot} {#Good, the pidfile is there...  Lets check how old it is..#(4 minutes and 50 seconds should be enough...) if {[set time [expr [clock seconds] - [set mtime [file mtime $pidfile]]]] &gt; 290} {#Too old for comfort...  Lets see if this is the second time in a row that file is too old...#(to prevent any problems caused by ex. change of the system clock...)#(if pidfile~ exists, it's the second time in a row that the pid-file is too old...)  puts stdout "Pidfile $pidfile is old... (Havn't been touched in [expr $time/60] minutes)\nChecking for ${pidfile}~... " nonewline  if {[file exists "${pidfile}~"]} {#It's there... Lets see if it's "real" (should contain the same pid as the real pidfile)#Danger: reading the pidfile will change it's time, so for this script to work, the "age" check#        must be less than the interval botchk.tcl is called (currently 10 secs lower than 5 minutes,#        change "&gt; 290" some lines above to something lower if you get problems)#        (To put it in other words, don't call botchk.tcl more often than 5 minutes (unless you decrease#        the "&gt; 290"...)   puts stdout "Found!\nValidating ${pidfile}~... " nonewline   set fileID [open "${pidfile}~" "RDONLY"]   gets $fileID pid1   close $fileID   set fileID [open $pidfile "RDONLY"]   gets $fileID pid2   close $fileID#It's valid... lets restart bot...   if {$pid1 == $pid2} {    puts stdout "Valid!\nRestarting..."    restart_bot   } {#It's not valid... better remove it...    puts stdout "Not valid - removing... " nonewline    file delete -- "${pidfile}~"   }  } {#It doesn't exist... lets create it so that we know we've already had this#problem the next time we check...   puts stdout "Not found!\nCreating new ${pidfile}~... " nonewline   file copy -- $pidfile "${pidfile}~"  } } {#pidfile is current, lets remove any stray pidfile~...  if {[file exists ${pidfile}~]} {   file delete -- "${pidfile}~"  } }}#tweak to restore the timestamp after reading...#depends on touch (havn't found anything in tcl that'll do the trick :/ )#catch {exec touch -t [clock format $mtime -format "%Y%m%d%H%M.%S"] $pidfile} msg</code></pre></div>Finally, I added the following line to my crontab:<div class="codebox"><p>Code: </p><pre><code>0,10,20,30,40,50 * * * * tclsh /home/user/eggdrop/botchk.tcl &gt;/dev/null 2&gt;&amp;1</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12450">CP1832</a> — Thu Sep 07, 2017 10:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2011-09-16T16:32:32-04:00</updated>

		<published>2011-09-16T16:32:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=97743#p97743</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=97743#p97743"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=97743#p97743"><![CDATA[
Sure, as long as you don't use the actual pid-file, and also remember to include the actual pid number within the file.<br><br>Another way would be to alter the scripts to use mtime instead of atime, though this would require a write to the pid-file as opposed to a simple read...<br>This is something I wrote ages ago, and it's worked well enough for me all this time. If you'd like to modify it, by all means go a head already.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Fri Sep 16, 2011 4:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[desired]]></name></author>
		<updated>2011-09-16T12:08:05-04:00</updated>

		<published>2011-09-16T12:08:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=97741#p97741</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=97741#p97741"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=97741#p97741"><![CDATA[
<blockquote class="uncited"><div>Unfortunately, due to the way filesystem operation works, this script will also alter the atime timestamp whenever accessing the pidfile, and thus must not be called more often than the hung/gone/dead-time. Recommended is 6+ minutes, I use 10 myself. You might get away with 5 minutes.</div></blockquote>I was thinking about a way to fix this... What about...<br><br>Instant of just open and close the file, you could write something into it - a timestamp.<br><br>Could it work?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11786">desired</a> — Fri Sep 16, 2011 12:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2008-09-16T16:19:17-04:00</updated>

		<published>2008-09-16T16:19:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85184#p85184</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85184#p85184"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85184#p85184"><![CDATA[
<blockquote class="uncited"><div>dumb question, soory, but how to call the botchk.tcl from cron?<br><br>with 0,10,20,30 * * * * tclsh /home/blah/botchk.tcl <br>or<br>just 0,10,20,30 * * * * /home/blah/botchk.tcl <br>?</div></blockquote>On most systems, the latter should work as the script uses the #! magic number. Should tclsh be installed in some different location, you'll have to go for the first one.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Tue Sep 16, 2008 4:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[moff]]></name></author>
		<updated>2008-09-12T05:16:49-04:00</updated>

		<published>2008-09-12T05:16:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85133#p85133</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85133#p85133"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85133#p85133"><![CDATA[
k, thx <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10076">moff</a> — Fri Sep 12, 2008 5:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[eXtremer]]></name></author>
		<updated>2008-09-12T03:15:00-04:00</updated>

		<published>2008-09-12T03:15:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85132#p85132</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85132#p85132"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85132#p85132"><![CDATA[
I did not change anything in cron, just added the *.tcl and that's it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9905">eXtremer</a> — Fri Sep 12, 2008 3:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[moff]]></name></author>
		<updated>2008-09-11T20:06:31-04:00</updated>

		<published>2008-09-11T20:06:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85128#p85128</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85128#p85128"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85128#p85128"><![CDATA[
dumb question, soory, but how to call the botchk.tcl from cron?<br><br>with 0,10,20,30 * * * * tclsh /home/blah/botchk.tcl <br>or<br>just 0,10,20,30 * * * * /home/blah/botchk.tcl <br>?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10076">moff</a> — Thu Sep 11, 2008 8:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[eXtremer]]></name></author>
		<updated>2008-09-11T02:03:03-04:00</updated>

		<published>2008-09-11T02:03:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85122#p85122</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85122#p85122"/>
		<title type="html"><![CDATA[Bots are not coming back from ping timeout]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85122#p85122"><![CDATA[
Thanks again a lost nml375, the scripts that you gave work just perfectly, yesterday my DSL at work died (don't know why) so the internet died as well when I came and restarted the DSL and the i-net reappeared the Bots connected in a few seconds as I wanted.<br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9905">eXtremer</a> — Thu Sep 11, 2008 2:03 am</p><hr />
]]></content>
	</entry>
	</feed>
