forked from pool/kdump
10 lines
121 B
Bash
10 lines
121 B
Bash
|
#!/bin/bash
|
||
|
#%programs: /sbin/kdump-led_blink
|
||
|
#
|
||
|
|
||
|
# blink
|
||
|
if [ -s /proc/vmcore ] ; then
|
||
|
/usr/sbin/kdump-led_blink
|
||
|
fi
|
||
|
|