blob: 1145a24934e7088e8f993a34ee6ea68fb650f1d3 [file] [log] [blame]
From bdd068873ed0979027c21773939bdb18046a8756 Mon Sep 17 00:00:00 2001
From: Kai Kang <kai.kang@windriver.com>
Date: Wed, 6 Feb 2019 13:58:04 +0000
Subject: [PATCH] sysvinit: Implement status
Implement the sub-command status.
Upstream-Status: Pending
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
atop.init | 3 +++
1 file changed, 3 insertions(+)
diff --git a/atop.init b/atop.init
index e6e11dc..e7b226d 100755
--- a/atop.init
+++ b/atop.init
@@ -18,6 +18,8 @@
# Check existance of binaries
[ -f /usr/bin/atop ] || exit 0
+[ -f /etc/init.d/functions ] && . /etc/init.d/functions
+
PIDFILE=/var/run/atop.pid
RETVAL=0
@@ -63,6 +65,7 @@ case "$1" in
;;
status)
+ status atop
;;
reload)