diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-10-16 23:09:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:21:14 -0500 |
commit | b58deeea692fc28827e249f0fc4a9d39263a4095 (patch) | |
tree | b4e7ddc76fd026977803d4d067dc307e7e9d48e7 /source4/script | |
parent | c2d6fad69bc42c0d7c261282797ca8baf9e9aad2 (diff) | |
download | samba-b58deeea692fc28827e249f0fc4a9d39263a4095.tar.gz samba-b58deeea692fc28827e249f0fc4a9d39263a4095.tar.bz2 samba-b58deeea692fc28827e249f0fc4a9d39263a4095.zip |
r19350: Properly list LOCAL-TALLOC under the "LOCAL" header.
Support directories for subcategories in tests.
Several small other fixes.
(This used to be commit bde00d97068d559b025ab131ff698a82430d14b3)
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/installtorture.sh | 18 | ||||
-rwxr-xr-x | source4/script/uninstalltorture.sh | 15 |
2 files changed, 33 insertions, 0 deletions
diff --git a/source4/script/installtorture.sh b/source4/script/installtorture.sh new file mode 100755 index 0000000000..db7ad9110c --- /dev/null +++ b/source4/script/installtorture.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +INSTALLPERMS=$1 +TORTUREDIR=$2 +shift +shift + +for p in $*; do + p2=`dirname $p` + base=`basename $p` + DESTDIR=$TORTUREDIR/`basename $p2` + mkdir -p $DESTDIR + echo Installing $p as $DESTDIR/$base + cp -f $p $DESTDIR/ + chmod $INSTALLPERMS $DESTDIR/$base +done + +exit 0 diff --git a/source4/script/uninstalltorture.sh b/source4/script/uninstalltorture.sh new file mode 100755 index 0000000000..0c6e4ec991 --- /dev/null +++ b/source4/script/uninstalltorture.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +TORTUREDIR=$1 +shift +shift + +for p in $*; do + p2=`dirname $p` + base=`basename $p` + DESTDIR=$TORTUREDIR/`basename $p2` + echo Removing $DESTDIR/$base + rm -f $p $DESTDIR/ +done + +exit 0 |