7 lines
219 B
Text
7 lines
219 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# 'Recovery' script that doesn't. This script is to be used for drivers that
|
||
|
# should not be restarted. Instead, the scripts configures the driver 'down'.
|
||
|
echo "Arguments: $@" >/dev/console
|
||
|
service down "$1"
|