More sane network slice attribute names. Also added rate limits back.
[myplc.git] / plc.d / functions
index 92a236f..15318f0 100644 (file)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: functions,v 1.3 2006/04/10 15:53:49 mlhuang Exp $
+# $Id: functions,v 1.7 2007/01/19 17:12:45 mlhuang Exp $
 #
 
 export PATH=/sbin:/bin:/usr/bin:/usr/sbin
@@ -72,13 +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'
-}
-
 # Forcefully make a symlink
 symlink ()
 {
@@ -87,6 +80,26 @@ symlink ()
     ln -s $1 $2
 }
 
+# Argument(s) or stdin to lowercase stdout
+lower ()
+{
+    if [ ${#*} -ge 1 ] ; then
+       tr A-Z a-z <<<$*
+    else
+       tr A-Z a-z
+    fi
+}
+
+# Argument(s) or stdin to uppercase stdout
+upper ()
+{
+    if [ ${#*} -ge 1 ] ; then
+       tr a-z A-Z <<<$*
+    else
+       tr a-z A-Z
+    fi
+}
+
 # Make copies of stdout and stderr. The plc initscript redirects
 # stdout and stderr to a logfile if -v is not specified.
 [ ! -e /dev/fd/3 ] && exec 3>&1