diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-11-08 13:31:50 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-11-08 13:58:37 +0100 |
commit | 011a41f695cbc7aa5deca2dcee77ccf9d21f5823 (patch) | |
tree | 69567629733384081bc02ab3eca1cd3a33f14ded /scripts | |
parent | d7890b93b8a0a9d0cd96b07f4b4e1326a52bc012 (diff) |
renaming of verbs
The verbs 'stop' and 'continue' are now renamed
as respectively 'pause' and 'resume'.
Change-Id: I2f82105103884fc07f3c67e08c696e435aed28e1
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/afm-util | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/afm-util b/scripts/afm-util index 60434a7..243b43c 100755 --- a/scripts/afm-util +++ b/scripts/afm-util @@ -59,12 +59,12 @@ case "$1" in stop|pause) i=$2 - send stop "$i" + send pause "$i" ;; resume|continue) i=$2 - send continue "$i" + send resume "$i" ;; state|status) @@ -97,16 +97,16 @@ The commands are: start id start an instance of the widget of id kill rid - terminate rid terminate the running instance rid + terminate rid terminate the running instance rid stop rid - pause rid stop the running instance rid + pause rid pause the running instance rid resume rid - continue rid continue the previously rid + continue rid continue the previously paused rid status rid - state rid get status of the running instance rid + state rid get status of the running instance rid EOC ;; |