16 lines
187 B
Plaintext
16 lines
187 B
Plaintext
|
start()
|
||
|
{
|
||
|
if ! [ -f /etc/setserial.cfg ]; then
|
||
|
return 0
|
||
|
fi
|
||
|
|
||
|
while read line; do
|
||
|
/bin/setserial $line
|
||
|
done < /etc/setserial.cfg
|
||
|
}
|
||
|
|
||
|
stop()
|
||
|
{
|
||
|
return 0
|
||
|
}
|