/usr/share/gridengine/util/logchecker.sh is in gridengine-common 8.1.9+dfsg-7build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | #!/bin/sh
#
# logchecker.sh
#
#___INFO__MARK_BEGIN__
##########################################################################
#
# The Contents of this file are made available subject to the terms of
# the Sun Industry Standards Source License Version 1.2
#
# Sun Microsystems Inc., March, 2001
#
#
# Sun Industry Standards Source License Version 1.2
# =================================================
# The contents of this file are subject to the Sun Industry Standards
# Source License Version 1.2 (the "License"); You may not use this file
# except in compliance with the License. You may obtain a copy of the
# License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
#
# Software provided under this License is provided on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
# See the License for the specific provisions governing your rights and
# obligations concerning the Software.
#
# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
#
# Copyright: 2001 by Sun Microsystems, Inc.
#
# All Rights Reserved.
#
##########################################################################
#___INFO__MARK_END__
#
# This is a template script for moving, deleting, compressing Grid Engine
# "messages" files and the "accounting" file. It doesn't deal with the
# "reporting" file, which potentially grows fastest.
#
# Do not edit this file directly. Copy it e.g. to your
#
# $SGE_ROOT/default/common
#
# directory. This will make sure that new releases or patches of Sun Grid
# Engine don't override your local changes.
#
#
# After customization this script can be installed as a cron job. If your
# Sun Grid Engine system is running under an admin_user id, make sure to run
# it as the proper user.
#
# Please read the file
#
# $SGE_ROOT/doc/logfile-trimming.asc
#
# for more information about this script
#
PATH=/usr/bin
#---------------------------------------------------------------------------
# begin section that needs to be customized
#
# UNCONFIGURED=yes|no if set to "no" really do action
# otherwise just print what would be done
UNCONFIGURED=yes
# ECHO=:|echo be verbose or not, the ":" (colon) is the
# null shell command
#
ECHO=echo
# SGE_ROOT=<path to your SGE_ROOT directory>
#
SGE_ROOT=undefined
# SGE_CELL - name of your cell, usually "default"
# - your "common" directory is always $SGE_ROOT/$SGE_CELL/common
#
SGE_CELL=default
# ACTION_ON=1|2|3|4
# 1 = work on qmaster and scheduler "messages" files only
# 2 = work on "messages" file on current host only
# 3 = work on all accessible execd "messages" files of global config
# 4 = work on qmaster "messages" and all accessible execd "messages" files
#
ACTION_ON=4
# ACTIONSIZE=<size_inkilobyte> rotate/delete only if file size exceeds given
# arg. If ACTIONSIZE=0 always work
#
ACTIONSIZE=0
# KEEPOLD=<number> number of old "messages" files to keep
# 30 means that extension 0-29 are saved
# <= 0 means that "messages" file is deleted, no backup
# the most recent messages file has extension ".0"
#
KEEPOLD=30
# GZIP=yes|no compress rotated "messages.0" file
#
GZIP=yes
#ACCT=yes|no yes = rotate accounting file when rotating qmaster
# messages file as well
# no = don't rotate accounting file
#
ACCT=no
#
#
# end section that needs to be customized
#---------------------------------------------------------------------------
#---------------------------------------------------------------------------
# execute or just echo given command line
#
Execute()
{
if [ "$UNCONFIGURED" != no ]; then
echo Not executing: $*
else
$*
fi
}
#---------------------------------------------------------------------------
# sge_logcheck
#
sge_logcheck()
{
if [ $1 = 1 ]; then
msgfile=$2/messages
else
msgfile=$2
fi
if [ ! -f $msgfile ]; then
$ECHO "file \"$msgfile\" doesn't exist"
return
fi
if [ $ACTIONSIZE -gt 0 ]; then
msgsize=`du -k $msgfile | cut -f1`
if [ $msgsize -lt $ACTIONSIZE ]; then
$ECHO "file \"$msgfile\" doesn't exceed size ${ACTIONSIZE}kb"
return
fi
fi
if [ $GZIP = yes ]; then
ext=.gz
else
ext=""
fi
if [ $KEEPOLD -gt 0 ]; then
keeptop=`expr $KEEPOLD - 1`
keepcurr=`expr $keeptop - 1`
while [ $keepcurr -ge 0 ]; do
if [ -f $msgfile.${keepcurr}${ext} ]; then
$ECHO "moving $msgfile.${keepcurr}${ext} --> $msgfile.${keeptop}${ext}"
Execute mv -f $msgfile.${keepcurr}${ext} $msgfile.${keeptop}${ext}
fi
keeptop=$keepcurr
keepcurr=`expr $keeptop - 1`
done
Execute mv -f $msgfile $msgfile.0
if [ $GZIP = yes ]; then
$ECHO "compressing $msgfile.0"
Execute gzip $msgfile.0
fi
else
$ECHO "deleting $msgfile"
Execute rm -f $msgfile
fi
}
#---------------------------------------------------------------------------
# MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN-MAIN
#---------------------------------------------------------------------------
EXECD_SPOOL=none
ARGC=$#
while [ $ARGC != 0 ]; do
case $1 in
-action_on)
if [ $ARGC -lt 2 ]; then
echo "Error: \"-action_on\" needs argument" >&2
exit 1
fi
ACTION_ON=$2
;;
-execd_spool)
if [ $ARGC -lt 2 ]; then
echo "Error: \"-execd_spool\" needs argument" >&2
exit 1
fi
EXECD_SPOOL=$2
;;
-h|-help|--help)
echo "logchecker.sh [-action_on 1|2|3|4] [-execd_spool <spool_dir>]" >&2
exit 0
;;
*)
echo "Error: unknown command line option: \"$1\""
exit
;;
esac
shift 2
ARGC=`expr $ARGC - 2`
done
if [ $SGE_ROOT = undefined ]; then
echo SGE_ROOT is still set to \"undefined\". Exiting.
exit 1
fi
if [ -x $SGE_ROOT/util/arch ]; then
ARCH=`$SGE_ROOT/util/arch`
else
echo "can't find script \"$SGE_ROOT/util/arch\". Exiting."
exit 1
fi
if [ ! -d $SGE_ROOT/utilbin/$ARCH ]; then
echo "can't find directory \"$SGE_ROOT/utilbin/$ARCH\". Exiting."
exit 1
fi
bootstrap_file=$SGE_ROOT/$SGE_CELL/common/bootstrap
if [ ! -f $bootstrap_file ]; then
echo "your \"bootstrap\" file does not exist. Exiting."
exit 1
fi
qma_spool_dir=`grep '^qmaster_spool_dir' $bootstrap_file | awk '{print $2}'`
execd_spool_dir=$EXECD_SPOOL
if [ "$qma_spool_dir" = "" -o "$execd_spool_dir" = "" ]; then
echo "can't determine qmaster and/or execd spool directory" >&2
exit 1
fi
if [ $ACTION_ON = 1 -o $ACTION_ON = 4 ]; then
sge_logcheck 1 $qma_spool_dir
if [ $ACCT = yes ]; then
sge_logcheck 2 $SGE_ROOT/$SGE_CELL/common/accounting
fi
fi
if [ $ACTION_ON = 2 ]; then
uqhostname=`$SGE_ROOT/utilbin/$ARCH/gethostname -name | cut -f1 -d.`
if [ -d $execd_spool_dir/$uqhostname ]; then
sge_logcheck 1 $execd_spool_dir/$uqhostname
else
$ECHO "directory \"$execd_spool_dir/$uqhostname\" doesn't exit"
fi
fi
if [ $ACTION_ON = 3 -o $ACTION_ON = 4 ]; then
for hostdir in `ls $execd_spool_dir| grep -v '^qmaster$'`; do
if [ -d $execd_spool_dir/$hostdir ]; then
sge_logcheck 1 $execd_spool_dir/$hostdir
else
$ECHO "directory \"$execd_spool_dir/$hostdir\" doesn't exit"
fi
done
fi
|