2016-02-02 05:38:03 +00:00
|
|
|
# Library to be sourced by download.d/abort.d scripts
|
|
|
|
|
|
|
|
|
|
|
|
stop() {
|
2016-09-24 14:33:01 +00:00
|
|
|
if [ -x /etc/init.d/"$1" ]; then
|
2016-02-02 05:38:03 +00:00
|
|
|
echo "Stopping $1..."
|
2016-09-24 14:33:01 +00:00
|
|
|
/etc/init.d/"$1" stop
|
2016-02-02 05:38:03 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
start_enabled() {
|
2016-09-24 14:33:01 +00:00
|
|
|
if [ -x /etc/init.d/"$1" ] && /etc/init.d/"$1" enabled; then
|
2016-02-02 05:38:03 +00:00
|
|
|
echo "Starting $1..."
|
2016-09-24 14:33:01 +00:00
|
|
|
/etc/init.d/"$1" start
|
2016-02-02 05:38:03 +00:00
|
|
|
fi
|
|
|
|
}
|