fixed and simplified

This commit is contained in:
Andreas Gustafsson
2001-07-13 18:29:00 +00:00
parent 0792e396ea
commit 25525110c1
2 changed files with 4 additions and 8 deletions

View File

@@ -15,11 +15,9 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: prereq.sh,v 1.2 2001/07/11 19:02:14 bwelling Exp $
# $Id: prereq.sh,v 1.3 2001/07/13 18:28:58 gson Exp $
status=0
$KEYGEN -a RSA -b 512 -n zone -r $KEYGEN foo > /dev/null 2>&1 || status=1
if [ $status == 0 ]
if $KEYGEN -a RSA -b 512 -n zone -r $KEYGEN foo > /dev/null 2>&1
then
rm -f foo*
else