Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Commit 7e0fcdb

Browse files
JimmyTinsleylaiwei
authored andcommitted
fix typo (#749)
1 parent f1bc8d7 commit 7e0fcdb

9 files changed

Lines changed: 19 additions & 19 deletions

File tree

modules/agent/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function stop() {
5151
pid=`cat $pidfile`
5252
kill $pid
5353
rm -f $pidfile
54-
echo "$app stoped..."
54+
echo "$app stopped..."
5555
}
5656

5757
function restart() {
@@ -66,7 +66,7 @@ function status() {
6666
if [ $running -gt 0 ];then
6767
echo started
6868
else
69-
echo stoped
69+
echo stopped
7070
fi
7171
}
7272

modules/aggregator/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function start() {
3939
function stop() {
4040
pid=`cat $pidfile`
4141
kill $pid
42-
echo "$app stoped..."
42+
echo "$app stopped..."
4343
}
4444

4545
function restart() {
@@ -55,7 +55,7 @@ function status() {
5555
echo -n "$app now is running, pid="
5656
cat $pidfile
5757
else
58-
echo "$app is stoped"
58+
echo "$app is stopped"
5959
fi
6060
}
6161

modules/alarm/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function start() {
3939
function stop() {
4040
pid=`cat $pidfile`
4141
kill $pid
42-
echo "$app stoped..."
42+
echo "$app stopped..."
4343
}
4444

4545
function restart() {
@@ -55,7 +55,7 @@ function status() {
5555
echo -n "$app now is running, pid="
5656
cat $pidfile
5757
else
58-
echo "$app is stoped"
58+
echo "$app is stopped"
5959
fi
6060
}
6161

modules/gateway/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function start() {
5757
function stop() {
5858
pid=`cat $pidfile`
5959
kill $pid
60-
echo "$app stoped"
60+
echo "$app stopped"
6161
}
6262

6363
function restart() {
@@ -76,7 +76,7 @@ function status() {
7676
echo -n "$app running, pid="
7777
cat $pidfile
7878
else
79-
echo "$app stoped"
79+
echo "$app stopped"
8080
fi
8181
}
8282

modules/graph/control

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ function start() {
6565
function stop() {
6666
pid=`cat $pidfile`
6767
kill $pid
68-
echo "stoped"
68+
echo "stopped"
6969
}
7070

7171
function shutdown() {
7272
pid=`cat $pidfile`
7373
kill -9 $pid
74-
echo "stoped"
74+
echo "stopped"
7575
}
7676

7777
function restart() {
@@ -88,7 +88,7 @@ function status() {
8888
echo -n "running, pid="
8989
cat $pidfile
9090
else
91-
echo "stoped"
91+
echo "stopped"
9292
fi
9393
}
9494

modules/hbs/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function start() {
3939
function stop() {
4040
pid=`cat $pidfile`
4141
kill $pid
42-
echo "$app stoped..."
42+
echo "$app stopped..."
4343
}
4444

4545
function restart() {
@@ -55,7 +55,7 @@ function status() {
5555
echo -n "$app now is running, pid="
5656
cat $pidfile
5757
else
58-
echo "$app is stoped"
58+
echo "$app is stopped"
5959
fi
6060
}
6161

modules/judge/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function stop() {
5555
function kill9() {
5656
pid=`cat $pidfile`
5757
kill -9 $pid
58-
echo "$app stoped..."
58+
echo "$app stopped..."
5959
}
6060

6161
function restart() {
@@ -71,7 +71,7 @@ function status() {
7171
echo -n "$app now is running, pid="
7272
cat $pidfile
7373
else
74-
echo "$app is stoped"
74+
echo "$app is stopped"
7575
fi
7676
}
7777

modules/nodata/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function start() {
6565
function stop() {
6666
pid=`cat $pidfile`
6767
kill -9 $pid
68-
echo "stoped"
68+
echo "stopped"
6969
}
7070

7171
function restart() {
@@ -82,7 +82,7 @@ function status() {
8282
echo -n "running, pid="
8383
cat $pidfile
8484
else
85-
echo "stoped"
85+
echo "stopped"
8686
fi
8787
}
8888

modules/transfer/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function start() {
3939
function stop() {
4040
pid=`cat $pidfile`
4141
kill -9 $pid
42-
echo "$app stoped..."
42+
echo "$app stopped..."
4343
}
4444

4545
function restart() {
@@ -55,7 +55,7 @@ function status() {
5555
echo -n "$app now is running, pid="
5656
cat $pidfile
5757
else
58-
echo "$app is stoped"
58+
echo "$app is stopped"
5959
fi
6060
}
6161

0 commit comments

Comments
 (0)