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 f7ffc493c05f..f4309db4493d 100755
--- a/run.sh
+++ b/run.sh
@@ -65,6 +65,11 @@ init()
:
}
+remove()
+{
+ :
+}
+
startd()
{
local pid=""
@@ -130,11 +135,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