diff options
author | Petr Štetiar <ynezz@true.cz> | 2019-07-23 12:06:29 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-09-15 20:58:30 +0200 |
commit | ed5b9129d7a47adaecdce694cec8e7b61131a9da (patch) | |
tree | 0422265f3f652b5199a77dbc03cda586a092ca97 /package | |
parent | a33d60c896233fb2c5b48bf583a97f25213e53d7 (diff) | |
download | upstream-ed5b9129d7a47adaecdce694cec8e7b61131a9da.tar.gz upstream-ed5b9129d7a47adaecdce694cec8e7b61131a9da.tar.bz2 upstream-ed5b9129d7a47adaecdce694cec8e7b61131a9da.zip |
base-files: implement generic service_running
DRY is good, otherwise we're going to suffer with a copy&paste disease
in the init scripts.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'package')
-rwxr-xr-x | package/base-files/files/etc/rc.common | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/base-files/files/etc/rc.common b/package/base-files/files/etc/rc.common index 75dbeedf34..37adab0c54 100755 --- a/package/base-files/files/etc/rc.common +++ b/package/base-files/files/etc/rc.common @@ -95,7 +95,9 @@ service_data() { } service_running() { - return 0 + local service="${1:-$(basename $initscript)}" + local instance="${2:-*}" + procd_running "$service" "$instance" "$@" } ${INIT_TRACE:+set -x} @@ -104,6 +106,9 @@ ${INIT_TRACE:+set -x} [ -n "$USE_PROCD" ] && { EXTRA_COMMANDS="${EXTRA_COMMANDS} running trace" + EXTRA_HELP="\ + running Check if service is running + " . $IPKG_INSTROOT/lib/functions/procd.sh basescript=$(readlink "$initscript") |