You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.6 KiB

# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../sde-debug/sde-debug.conf
# Copyright (C) 2007 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
main_rd() {
if [ -z "$root" ] ; then
rm -f /var/adm/*/sde-debug
mkdir -p /var/adm/sde-debug
cd $root/
cat << 'EOT' |
shares.txt shares.sh 'shared' files
bindups.txt bindups.sh duplicated binary names
rootfsbin.txt rootfsbin.sh binaries in /bin and /sbin
unarchived.txt unarchived.sh files 'liggering' arround
baduidgid.txt baduidgid.sh files with unknown UID/GID
usrlocal.txt usrlocal.sh files in /usr/local tree
empty.txt empty.sh empty files or packages
badfiles.txt badfiles.sh known bad files in packages
EOT
while read file script desc ; do
echo -n "Checking for $desc ..." ; lang=bash
$lang $confdir/test_$script > /var/adm/sde-debug/$file 2>&1
if [ -s /var/adm/sde-debug/$file ] ; then
echo " found errors!"
else
echo " ok." ; rm -f /var/adm/sde-debug/$file
fi
done
dump_env > /var/adm/sde-debug/buildenv.txt
cp -a $base/config/$config/config /var/adm/sde-debug/config.txt
touch /var/adm/sde-debug/*
fi
}
custmain="main_rd"
srctar=none