Changeset 2885 in MondoRescue


Ignore:
Timestamp:
Oct 8, 2011, 12:29:46 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Fix an issue on udevadm call (needs an intermediate variable)
  • Fix a remaining ProLiant tool call
Location:
branches/2.2.9/mindi
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi/deplist.d/ProLiant.conf

    r2884 r2885  
    99# Look at http://downloads.linux.hp.com/SDR/downloads/ProLiantSupportPack/
    1010/usr/sbin/hpacuscripting
     11/opt/compaq/hpacucli/bld/.hpacuscripting
    1112/sbin/hponcfg
    1213
  • branches/2.2.9/mindi/rootfs/sbin/init

    r2878 r2885  
    99CaughtSoftReset() {
    1010    trap SIGTERM
    11     reboot
     11    reboot -f
    1212}
    1313
     
    687687
    688688if [ -x /sbin/udevadm ]; then
    689     if [ `/sbin/udevadm --version` -ge 146 ]; then
    690         /sbin/udevadm triger --type=failed
     689    v=`/sbin/udevadm --version`
     690    if [ "$v" -ge "146" ]; then
     691        /sbin/udevadm trigger --type=failed
    691692    else
    692693        /sbin/udevadm trigger --retry-failed
Note: See TracChangeset for help on using the changeset viewer.