diff options
author | 2018-11-13 11:18:01 +0000 | |
---|---|---|
committer | 2018-11-13 15:06:17 +0000 | |
commit | f76f158e7cfdb0a8ded0162224cce8b97bdcedaf (patch) | |
tree | 3acf97e6b7beaf3a7d452e31a34681d1ce47aaf4 /debian | |
parent | e7c1bc50fa6908bb74e882338cc11bc5e3b22255 (diff) |
Fix /lib/dpdk/dpdk-init status call
It's /lib/dpdk/dpdk-init status not /lib/dpdk/dpdk-init --status
Change-Id: I45015657df84bea1727046329f1c082d41008bb7
Signed-off-by: Luca Boccassi <luca.boccassi@gmail.com>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/dpdk.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/dpdk.init b/debian/dpdk.init index 002ba29f..dd36c87f 100644 --- a/debian/dpdk.init +++ b/debian/dpdk.init @@ -38,7 +38,7 @@ stop) try-restart|restart|force-reload) ;; status) - output=$(/lib/dpdk/dpdk-init --status 2>&1) || error="$?" + output=$(/lib/dpdk/dpdk-init status 2>&1) || error="$?" if [ ! -z "$output" ]; then echo "$output" | while read line; do log_action_cont_msg "$line" |