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
52 lines
1.6 KiB
18 years ago
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
||
18 years ago
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||
|
#
|
||
18 years ago
|
# Filename: package/.../sde-debug/sde-debug.conf
|
||
|
# Copyright (C) 2007 The OpenSDE Project
|
||
18 years ago
|
# 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.
|
||
18 years ago
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
||
18 years ago
|
|
||
|
main_rd() {
|
||
|
if [ -z "$root" ] ; then
|
||
18 years ago
|
rm -f /var/adm/*/sde-debug
|
||
|
mkdir -p /var/adm/sde-debug
|
||
18 years ago
|
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
|
||
18 years ago
|
$lang $confdir/test_$script > /var/adm/sde-debug/$file 2>&1
|
||
|
if [ -s /var/adm/sde-debug/$file ] ; then
|
||
18 years ago
|
echo " found errors!"
|
||
|
else
|
||
18 years ago
|
echo " ok." ; rm -f /var/adm/sde-debug/$file
|
||
18 years ago
|
fi
|
||
|
done
|
||
|
|
||
18 years ago
|
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/*
|
||
18 years ago
|
fi
|
||
|
}
|
||
|
|
||
|
custmain="main_rd"
|
||
|
srctar=none
|
||
|
|