blob: 968258a2649515b46f2c615f8cfe061174f55198 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This file contains common functions used in init and in hooks
msg () {
[ "${quiet}" != "y" ] && echo $@
}
err () {
echo "ERROR: $@"
}
poll_device() {
device="$1"
if [ "$2" -gt 0 ]; then
seconds="$2"
else
seconds=5
fi
echo "Waiting ${seconds} seconds for device ${device} ..."
while [ ! -b "${device}" -a ! -h "${device}" -a ${seconds} -gt 0 ]; do
sleep 1
seconds=$((${seconds}-1))
done
[ -b "${device}" -o -h "${device}" ]
}
|