What's good "ghetto process monitor" without installing any additional software besides cron and some standard UNIX tools? I.e. check in a shell script if a certain process has died and been dead for a while to restart it? This would be to restart segfaulting Varnish process.
You can create a simple bash script running every minute and checking whether the process is running. If not, it can create file and in one of the next runs according to the file creation date it can make a decision whether to start the varnish process again or not.
Simple example:
But why you doesn't want to use external utility for this? Monit is a great tool (daemon) for this stuff. Also it can monitor many other processes.