Browse Source

Auto update point

Vova Tkach 6 years ago
parent
commit
16bcabcfff
1 changed files with 7 additions and 0 deletions
  1. 7 0
      run.sh

+ 7 - 0
run.sh

@@ -160,6 +160,10 @@ status() {
 	fi
 }
 
+update() {
+	echo "Update..."
+}
+
 usage() {
 	echo "$0 (once|start|stop|status)"
 }
@@ -178,6 +182,9 @@ case $1 in
 	"status")
 		status
 		;;
+	"update")
+		update
+		;;
 	*)
 		usage
 		;;