#!/bin/bash
BSL=`cat /proc/cmdline | sed -r -e 's@.*kiwiserver=(.*)\skiwiservertype.*@\1@'`

if [ "${BSL}" == "boot.stresslinux.org" ] ; then
	if [ -x /usr/sbin/inventory-system ] ; then
        	/usr/sbin/inventory-system | $(which logger) -t inventory-system
	fi
fi

exit 0
