Changes of Revision 4
[-] [+] | Added | cron.daily |
@@ -0,0 +1,10 @@ +#!/bin/bash +BSL=`cat /proc/cmdline | sed -e -r '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 |