Browse Source

micrond: show stdout and stderr in log

So far, all output created by scripts run with micrond has been
discarded. Since there is no reason for that and it also does not
match the expected behavior, this enables both stdout and stderr
output for the service.

If not desired, a user can still use >/dev/null or similar in his/her
micrond jobs to disable output easily and similar to what it would be
on other systems.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
lilik-openwrt-22.03
Adrian Schmutzler 4 years ago
parent
commit
26ccda6eed
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      utils/micrond/Makefile
  2. +2
    -0
      utils/micrond/files/etc/init.d/micrond

+ 1
- 1
utils/micrond/Makefile 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


+ 2
- 0
utils/micrond/files/etc/init.d/micrond 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
} }

Loading…
Cancel
Save