#!/bin/sh

if [ "${SLB_REPORT_PRIVATE}" = "1" ]
then
	dmidecode | sed -e 's/Serial.*/Serial Number: ******/' > $1
else
	dmidecode > $1
fi


