dustin / whatsup

My web monitoring jabber bot.

This URL has Read+Write access

dustin (author)
Sat Jul 25 01:37:21 -0700 2009
commit  cf116630c285240563a0dcd8bd402cd2630d442c
tree    bc45d9d1fa05752fc33426370aca6dd753199a84
parent  e8534eecce95b81e5436951126633261e42b3a2f
whatsup / whatsup.start
100755 15 lines (11 sloc) 0.242 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# Shell script for running the jabber bot. I'd rather use something like
# launchd, but that's unavailable to me on my servers.
 
ulimit -v 100000
ulimit -m 100000
 
while :
do
twistd -l whatsup.log -ny whatsup.tac
sleep 5
done