Cleanup test output on -x, set param default using local event log, added param checks

This commit is contained in:
iadgovuser26
2020-06-12 10:28:23 -04:00
parent 7ab7408b59
commit 5c616882ff
4 changed files with 38 additions and 23 deletions

View File

@ -16,7 +16,7 @@ function eventcheck_help() {
echo "-h --help : help listing";
}
while [[ "$#" -gt 0 ]]; do
while [[ "$#" -gt 0 ]]; do
case $1 in
-p|--publicCertificate) oem_cert="$2"; shift ;;
-r|--rim) oem_rim=$2; shift ;;

View File

@ -1,7 +1,10 @@
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:output indent="no" />
<xsl:strip-space elements="*"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>