From f0feb1801d48fb27044e8ea52e3335e1e4c7f3d8 Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Mon, 10 Jul 2006 21:05:37 +0000 Subject: [PATCH] - move ssl_cname and ssl_email to plc.d/ssl since this is the only place it's ever used anyway --- plc.d/functions | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/plc.d/functions b/plc.d/functions index e07788c..5b59f69 100644 --- a/plc.d/functions +++ b/plc.d/functions @@ -5,7 +5,7 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: functions,v 1.4 2006/04/25 21:18:19 mlhuang Exp $ +# $Id: functions,v 1.5 2006/06/23 21:41:56 mlhuang Exp $ # export PATH=/sbin:/bin:/usr/bin:/usr/sbin @@ -72,20 +72,6 @@ gethostbyname () perl -MSocket -e '($a,$b,$c,$d,@addrs) = gethostbyname($ARGV[0]); print inet_ntoa($addrs[0]) . "\n";' $1 2>/dev/null } -# Print the CNAME of an SSL certificate -ssl_cname () -{ - openssl x509 -noout -in $1 -subject | \ - sed -n -e 's@.*/CN=\([^/]*\).*@\1@p' -} - -# Print the emailAddress of an SSL certificate -ssl_email () -{ - openssl x509 -noout -in $1 -subject | \ - sed -n -e 's@.*/emailAddress=\([^/]*\).*@\1@p' -} - # Forcefully make a symlink symlink () { -- 2.43.0