17 lines
175 B
Bash
Executable File
17 lines
175 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
|
|
which idb_bootconfig &>/dev/null || exit 0
|
|
|
|
case "$1" in
|
|
start|"")
|
|
idb_bootconfig
|
|
;;
|
|
stop)
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop}" >&2
|
|
exit 1
|
|
;;
|
|
esac
|