iron.git

ref: 7190cb8bbcc800a1804c44b882ae8e432a699780

iron/libexec/iron/iron-debug


#! /bin/bash 
# Usage: $iron debug  
# Summary: manage CA
# Help: This command groups commands used to setup config create delete a CA


APPNAME="iron"
CURRDIR=$(pwd)

RCDIR=$HOME/.$APPNAME
test -d $RCDIR || mkdir -p $RCDIR
CURRENT_TSTAMP=$(date '+%Y%m%d%H%M')

if [ "$#" = 2 ];then
	operation=$1
	fileio=$2
	RCFILE="$HOME/"."$APPNAME/default-ca"".env"
	if [ "$operation" = "pkcs12" ]; then
		keytool -list -keystore $fileio \
	-storetype PKCS12 -v
	#-storepass xxxxxx 
	fi 
else
	echo "Usage: iron debug  "
	exit -1
fi