summarylogtreecommitdiffstats
path: root/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index 26c502d1e399..359f1e31d970 100755
--- a/run.sh
+++ b/run.sh
@@ -88,6 +88,11 @@ killd()
fi
}
+remove()
+{
+ :
+}
+
startd()
{
local pid=""
@@ -155,11 +160,12 @@ write_pid_file()
option_parser()
{
- getopts ":hiks" opt "$@"
+ getopts ":hikrs" opt "$@"
case "$opt" in
h ) help ;;
i ) init ;;
k ) killd ;;
+ r ) remove ;;
s ) startd ;;
? ) help; return 1 ;;
esac