procd: add support for relaying daemon stdio to syslog

Procd enabled init scripts can now specify:

  procd_set_param stdout 1
  procd_set_param stderr 1

... to relay their respective standard IO streams to the system log.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>

SVN-Revision: 44547
This commit is contained in:
Jo-Philipp Wich 2015-02-26 13:42:47 +00:00
parent e0f48f8d30
commit fd670d2756
2 changed files with 5 additions and 2 deletions

View File

@ -8,14 +8,14 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=procd
PKG_VERSION:=2015-02-26
PKG_VERSION:=2015-02-26.1
PKG_RELEASE=$(PKG_SOURCE_VERSION)
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=git://nbd.name/luci2/procd.git
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=4bccbfa967d756b8c84a62ea4752e936d8545a73
PKG_SOURCE_VERSION:=9851e517f1c3e55228e2fdde913c9cf0b87a4bc7
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
CMAKE_INSTALL:=1

View File

@ -143,6 +143,9 @@ _procd_set_param() {
user)
json_add_string "$type" "$1"
;;
stdout|stderr)
json_add_boolean "$type" "$1"
;;
esac
}