blob: c7a890256c8ea0b572d0d6777d02b461da5eecdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# vim:set ft=sh:
build()
{
MODULES=""
BINARIES=""
FILES=""
SCRIPT="sleep"
}
help ()
{
cat <<HELPEOF
This hook causes the init process to interrupt
for a fixed time interval. The time in seconds
can be specified in the sleeptime= command line
parameter. The default is 5 seconds.
If a sleepdevice= parameter is specified, sleep
until the given device node is available, polling
at one second intervals until sleeptime is reached.
HELPEOF
}
|