diff --git a/bin/tests/system/dnssec/ns1/sign.sh b/bin/tests/system/dnssec/ns1/sign.sh index ed52a9c4e5..7e04660a62 100644 --- a/bin/tests/system/dnssec/ns1/sign.sh +++ b/bin/tests/system/dnssec/ns1/sign.sh @@ -15,7 +15,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: sign.sh,v 1.10 2000/08/01 01:14:37 tale Exp $ +# $Id: sign.sh,v 1.11 2000/11/22 20:37:47 bwelling Exp $ SYSTEMTESTTOP=../.. . $SYSTEMTESTTOP/conf.sh @@ -32,15 +32,15 @@ keyname=`$KEYGEN -a RSA -b 768 -n zone -r $RANDFILE $zone` cp ../ns2/keyset-example. . -$KEYSIGNER -r $RANDFILE keyset-example. $keyname +$KEYSIGNER -r $RANDFILE keyset-example. $keyname > /dev/null cat signedkey-example. >> ../ns2/example.db.signed -$KEYSETTOOL -r $RANDFILE -t 3600 $keyname +$KEYSETTOOL -r $RANDFILE -t 3600 $keyname > /dev/null cat $infile $keyname.key > $zonefile -$SIGNER -r $RANDFILE -o $zone $zonefile +$SIGNER -r $RANDFILE -o $zone $zonefile > /dev/null # Configure the resolving server with a trusted key. diff --git a/bin/tests/system/dnssec/ns2/sign.sh b/bin/tests/system/dnssec/ns2/sign.sh index 8df367a7b5..c69577dec1 100644 --- a/bin/tests/system/dnssec/ns2/sign.sh +++ b/bin/tests/system/dnssec/ns2/sign.sh @@ -15,7 +15,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: sign.sh,v 1.13 2000/08/01 01:14:43 tale Exp $ +# $Id: sign.sh,v 1.14 2000/11/22 20:37:48 bwelling Exp $ SYSTEMTESTTOP=../.. . $SYSTEMTESTTOP/conf.sh @@ -35,7 +35,7 @@ keyname=`$KEYGEN -r $RANDFILE -a RSA -b 768 -n zone $zone` cp ../ns3/keyset-secure.example. . -$KEYSIGNER -r $RANDFILE keyset-secure.example. $keyname +$KEYSIGNER -r $RANDFILE keyset-secure.example. $keyname > /dev/null # This will leave two copies of the child's zone key in the signed db file; # that shouldn't cause any problems. @@ -43,17 +43,17 @@ cat signedkey-secure.example. >>../ns3/secure.example.db.signed cp ../ns3/keyset-bogus.example. . -$KEYSIGNER -r $RANDFILE keyset-bogus.example. $keyname +$KEYSIGNER -r $RANDFILE keyset-bogus.example. $keyname > /dev/null # This will leave two copies of the child's zone key in the signed db file; # that shouldn't cause any problems. cat signedkey-bogus.example. >>../ns3/bogus.example.db.signed -$KEYSETTOOL -r $RANDFILE -t 3600 $keyname +$KEYSETTOOL -r $RANDFILE -t 3600 $keyname > /dev/null cat $infile $keyname.key >$zonefile -$SIGNER -r $RANDFILE -o $zone $zonefile +$SIGNER -r $RANDFILE -o $zone $zonefile > /dev/null # Sign the privately secure file @@ -65,4 +65,4 @@ privkeyname=`$KEYGEN -r $RANDFILE -a RSA -b 768 -n zone $privzone` cat $privinfile $privkeyname.key >$privzonefile -$SIGNER -r $RANDFILE -o $privzone $privzonefile +$SIGNER -r $RANDFILE -o $privzone $privzonefile > /dev/null diff --git a/bin/tests/system/dnssec/ns3/sign.sh b/bin/tests/system/dnssec/ns3/sign.sh index 27e1d67cc1..2a64e80a98 100644 --- a/bin/tests/system/dnssec/ns3/sign.sh +++ b/bin/tests/system/dnssec/ns3/sign.sh @@ -15,7 +15,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: sign.sh,v 1.10 2000/08/01 01:14:50 tale Exp $ +# $Id: sign.sh,v 1.11 2000/11/22 20:37:50 bwelling Exp $ RANDFILE=../random.data @@ -25,11 +25,11 @@ zonefile=secure.example.db keyname=`$KEYGEN -r $RANDFILE -a RSA -b 768 -n zone $zone` -$KEYSETTOOL -r $RANDFILE -t 3600 $keyname.key +$KEYSETTOOL -r $RANDFILE -t 3600 $keyname.key > /dev/null cat $infile $keyname.key >$zonefile -$SIGNER -r $RANDFILE -o $zone $zonefile +$SIGNER -r $RANDFILE -o $zone $zonefile > /dev/null zone=bogus.example. infile=bogus.example.db.in @@ -37,8 +37,8 @@ zonefile=bogus.example.db keyname=`$KEYGEN -r $RANDFILE -a RSA -b 768 -n zone $zone` -$KEYSETTOOL -r $RANDFILE -t 3600 $keyname.key +$KEYSETTOOL -r $RANDFILE -t 3600 $keyname.key > /dev/null cat $infile $keyname.key >$zonefile -$SIGNER -r $RANDFILE -o $zone $zonefile +$SIGNER -r $RANDFILE -o $zone $zonefile > /dev/null