#!/bin/sh
##########################################################################
# $Id: zz-fortune,v 1.5 2002/10/12 02:08:19 kirk Exp $
##########################################################################
# Named 'zz-fortune' so that it will be the last to execute...

if [ "$PRINTING" = "y" ] ; then
   echo
   echo
   echo "------------------ Disk Space --------------------"
   echo
   df -h
   echo
   if [ -x /usr/games/fortune ] ; then
      echo
      echo
      echo "------------------ Fortune --------------------"
      echo
      /usr/games/fortune
      echo
   fi
fi
