#!/bin/sh
if [ -e /tmp/.outdoor ]; then
  rm -f /tmp/.outdoor
  killall -9 outdoor
else
  touch /tmp/.outdoor
  /var/bin/outdoor &
fi
exit;
