#!/bin/bash # Filename: ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/93-update-usbids # Purpose: update pciids # Authors: (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. ################################################################################ if ifclass NO_ONLINE ; then echo "Ignoring script 93-update-usbids as NO_ONLINE is set." exit 0 fi set -u set -e [ -x $target/usr/bin/timeout ] && TIMEOUT="10" || TIMEOUT="" if ! [ -x $target/usr/bin/update-usbids ] ; then echo "Warning: update-usbids not installed" exit 0 fi echo "Updating USB-IDs" if [ -n "$TIMEOUT" ] ; then $ROOTCMD timeout $TIMEOUT update-usbids else $ROOTCMD update-usbids fi ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2