Blame scripts/services/zz-fortune

Packit Bot ea69bd
##########################################################################
Packit Bot ea69bd
# $Id$
Packit Bot ea69bd
##########################################################################
Packit Bot ea69bd
# Named 'zz-fortune' so that it will be the last to execute...
Packit Bot ea69bd
Packit Bot ea69bd
#######################################################
Packit Bot ea69bd
## Copyright (c) 2008 Kirk Bauer
Packit Bot ea69bd
## Covered under the included MIT/X-Consortium License:
Packit Bot ea69bd
##    http://www.opensource.org/licenses/mit-license.php
Packit Bot ea69bd
## All modifications and contributions by other persons to
Packit Bot ea69bd
## this script are assumed to have been donated to the
Packit Bot ea69bd
## Logwatch project and thus assume the above copyright
Packit Bot ea69bd
## and licensing terms.  If you want to make contributions
Packit Bot ea69bd
## under your own copyright or a different license this
Packit Bot ea69bd
## must be explicitly stated in the contribution an the
Packit Bot ea69bd
## Logwatch project reserves the right to not accept such
Packit Bot ea69bd
## contributions.  If you have made significant
Packit Bot ea69bd
## contributions to this script and want to claim
Packit Bot ea69bd
## copyright please contact logwatch-devel@lists.sourceforge.net.
Packit Bot ea69bd
#########################################################
Packit Bot ea69bd
Packit Bot ea69bd
my $env = ( $ENV{'REAL_LANG'} ? "LANG=".$ENV{'REAL_LANG'}." " : "" ).
Packit Bot ea69bd
      ( $ENV{'REAL_LC_ALL'} ? "LC_ALL=".$ENV{'REAL_LC_ALL'}." " : "" );
Packit Bot ea69bd
Packit Bot ea69bd
if (($ENV{'PRINTING'} eq "y" ) && (-f "/usr/games/fortune")) {
Packit Bot ea69bd
      #print "\n\n------------------ Fortune --------------------\n\n";
Packit Bot ea69bd
      system("$env /usr/games/fortune");
Packit Bot ea69bd
      print "\n";
Packit Bot ea69bd
}
Packit Bot ea69bd
elsif (($ENV{'PRINTING'} eq "y" ) && (-f "/usr/bin/fortune")) {
Packit Bot ea69bd
      #print "\n\n------------------ Fortune --------------------\n\n";
Packit Bot ea69bd
      system("$env /usr/bin/fortune");
Packit Bot ea69bd
      print "\n";
Packit Bot ea69bd
}
Packit Bot ea69bd
Packit Bot ea69bd
# vi: shiftwidth=3 tabstop=3 syntax=perl et
Packit Bot ea69bd
# Local Variables:
Packit Bot ea69bd
# mode: perl
Packit Bot ea69bd
# perl-indent-level: 3
Packit Bot ea69bd
# indent-tabs-mode: nil
Packit Bot ea69bd
# End: