Merge pull request #11922 from adrianschmutzler/micrond

micrond: show stdout and stderr in log
This commit is contained in:
Matthias Schiffer 2020-04-22 19:11:53 +02:00 committed by GitHub
commit 65f63a0e9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=micrond PKG_NAME:=micrond
PKG_VERSION:=1 PKG_VERSION:=1
PKG_RELEASE:=1 PKG_RELEASE:=2
PKG_LICENSE:=BSD-2-clause PKG_LICENSE:=BSD-2-clause
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk

View file

@ -9,5 +9,7 @@ start_service() {
procd_open_instance procd_open_instance
procd_set_param command /usr/sbin/micrond "$CRONDIR" procd_set_param command /usr/sbin/micrond "$CRONDIR"
procd_set_param respawn procd_set_param respawn
procd_set_param stdout 1
procd_set_param stderr 1
procd_close_instance procd_close_instance
} }