diff options
-rwxr-xr-x | sentinel-minipot/files/init | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sentinel-minipot/files/init b/sentinel-minipot/files/init index e10889c..c243697 100755 --- a/sentinel-minipot/files/init +++ b/sentinel-minipot/files/init @@ -24,8 +24,10 @@ start_service() { [ "$smtp_port" = "0" ] || procd_append_param command --smtp="$smtp_port" [ "$telnet_port" = "0" ] || procd_append_param command --telnet="$telnet_port" procd_set_param respawn 3600 5 5 - procd_set_param stdout 1 - procd_set_param stderr 1 + # TODO uncomment or replace logging once debug logs are no longer printed + # Otherwise this just spams log a lot. + #procd_set_param stdout 1 + #procd_set_param stderr 1 procd_set_param file /etc/config/sentinel procd_close_instance } |