two merge escapees

This commit is contained in:
spz 2014-07-08 05:47:36 +00:00
parent 9638304d0b
commit 084fe027a3
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/sh
#
# Shell script to start the zkt-ls command
# out of the example directory
#
if test ! -f dnssec.conf
then
echo Please start this skript out of the flat or hierarchical sub directory
exit 1
fi
ZKT_CONFFILE=`pwd`/dnssec.conf ../../zkt-ls "$@"

View File

@ -0,0 +1,12 @@
#!/bin/sh
#
# Shell script to start the zkt-signer
# command out of the example directory
#
if test ! -f dnssec.conf
then
echo Please start this skript out of the flat or hierarchical sub directory
exit 1
fi
ZKT_CONFFILE=`pwd`/dnssec.conf ../../zkt-signer "$@"