#%% begin initialize 
cd etc-incoming
if [ ! -f ../etc/hosts.allow ]; then
  mv hosts.allow /etc
else
  rm hosts.allow
fi
if [ ! -f ../etc/hosts.deny ]; then
  mv hosts.deny /etc
else
  rm hosts.deny
fi
cd ..
chk=`ls etc-incoming/`
if [ "$chk.x" = ".x" ]; then
  rmdir etc-incoming
fi

#%% end
