diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-11-06 23:34:10 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-11-06 23:34:10 +0000 |
commit | 66fb2ca62ec0457b5c12d05de61b168ee29101f7 (patch) | |
tree | 11a926b65e3d3388f959684bc9fd39939c811def /app-benchmarks/ltp/files | |
parent | Fix for the 2.4 kNFSd security vulnerability and the 2.6 /dev/ptmx DoS, bug #... (diff) | |
download | historical-66fb2ca62ec0457b5c12d05de61b168ee29101f7.tar.gz historical-66fb2ca62ec0457b5c12d05de61b168ee29101f7.tar.bz2 historical-66fb2ca62ec0457b5c12d05de61b168ee29101f7.zip |
Initial import as per bug #13662. Ebuild and patches by Marien Zwart
Diffstat (limited to 'app-benchmarks/ltp/files')
-rw-r--r-- | app-benchmarks/ltp/files/IDcheck-noninteractive.patch | 23 | ||||
-rw-r--r-- | app-benchmarks/ltp/files/digest-ltp-20041104 | 1 | ||||
-rw-r--r-- | app-benchmarks/ltp/files/runltp-path.patch | 11 |
3 files changed, 35 insertions, 0 deletions
diff --git a/app-benchmarks/ltp/files/IDcheck-noninteractive.patch b/app-benchmarks/ltp/files/IDcheck-noninteractive.patch new file mode 100644 index 000000000000..612875fa6744 --- /dev/null +++ b/app-benchmarks/ltp/files/IDcheck-noninteractive.patch @@ -0,0 +1,23 @@ +--- IDcheck.sh.orig 2004-11-06 10:34:45.167017728 +0100 ++++ IDcheck.sh 2004-11-06 10:35:15.092372928 +0100 +@@ -89,19 +89,7 @@ + I_AM_ROOT=1 + fi + +-if [ $NOBODY_ID != "0" ] || [ $BIN_ID != "0" ] || [ $DAEMON_ID != "0" ] || [ $NOBODY_GRP != "0" ] || [ $BIN_GRP != "0" ] || [ $DAEMON_GRP != "0" ] || [ $USERS_GRP != "0" ] || [ $SYS_GRP != "0" ] && [ $I_AM_ROOT != "0" ]; +-then +- echo -n "If any required user ids and/or groups are missing, would you like these created? Y/N " +- read ans +- case $ans in +- Y*|y*) +- CREATE=1 +- ;; +- *) +- CREATE=0 +- ;; +- esac +-fi ++CREATE=0 + + if [ $NOBODY_ID != "1" ] && [ $NOBODY_GRP != "1" ]; then + echo "Nobody user id and group exist." diff --git a/app-benchmarks/ltp/files/digest-ltp-20041104 b/app-benchmarks/ltp/files/digest-ltp-20041104 new file mode 100644 index 000000000000..3ee49b3f0039 --- /dev/null +++ b/app-benchmarks/ltp/files/digest-ltp-20041104 @@ -0,0 +1 @@ +MD5 98d4f0bc2185857adb64c1306977b0b4 ltp-full-20041104.tgz 5988292 diff --git a/app-benchmarks/ltp/files/runltp-path.patch b/app-benchmarks/ltp/files/runltp-path.patch new file mode 100644 index 000000000000..a96e4431012d --- /dev/null +++ b/app-benchmarks/ltp/files/runltp-path.patch @@ -0,0 +1,11 @@ +--- runltp.orig 2004-11-06 11:40:02.729295792 +0100 ++++ runltp 2004-11-06 11:40:25.758808272 +0100 +@@ -43,7 +43,7 @@ + echo "FATAL: unable to change directory to $(dirname $0)" + exit 1 + } +- export LTPROOT=${PWD} ++ export LTPROOT=/usr/libexec/ltp/ + export TMPBASE="/tmp" + export TMP="${TMPBASE}/ltp-$$" + export PATH="${PATH}:${LTPROOT}/testcases/bin" |