From cd1ab0aaa0f2882fb67bd30e7955a77e5116ae2b Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Fri, 13 Apr 2012 00:49:41 -0500 Subject: Added CA include script. --- scripts/certs-remove.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'scripts/certs-remove.sh') diff --git a/scripts/certs-remove.sh b/scripts/certs-remove.sh index 90d847d..97439e1 100755 --- a/scripts/certs-remove.sh +++ b/scripts/certs-remove.sh @@ -1,13 +1,15 @@ #!/bin/sh -x +. ./ca-include.sh + FIREFOX_DIR=~/.mozilla/firefox PROFILE=`grep Path= $FIREFOX_DIR/profiles.ini | awk -F= '{print $2}'` cd $FIREFOX_DIR/$PROFILE -certutil -D -n "caadmin" -d . +certutil -D -n "$CA_ADMIN_NAME" -d . certutil -D -n "kraadmin" -d . -certutil -D -n "Certificate Authority - EXAMPLE-COM" -d . +certutil -D -n "$CA_SUBSYSTEM_NAME - $REALM" -d . certutil -D -n "$HOSTNAME" -d . certutil -D -n "$HOSTNAME #2" -d . certutil -D -n "$HOSTNAME #3" -d . -- cgit