From fad907ae9e2b7ec4a9421075575c95884abdaa78 Mon Sep 17 00:00:00 2001 From: adam-qomodo <138065765+adam-qomodo@users.noreply.github.com> Date: Sat, 13 Jan 2024 04:58:25 +0000 Subject: [PATCH] Removed DAEMONIZE steps. (#1983) On Debian, using Supervisord, adding -n to the start command is the correct step. The bin/cowrie script is no longer meant to be edited and DAEMONIZE no longer works if you edit it. --- INSTALL.rst | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/INSTALL.rst b/INSTALL.rst index 9636b860..30472187 100644 --- a/INSTALL.rst +++ b/INSTALL.rst @@ -198,20 +198,12 @@ Running using Supervisord (OPTIONAL) On Debian, put the below in /etc/supervisor/conf.d/cowrie.conf:: [program:cowrie] - command=/home/cowrie/cowrie/bin/cowrie start + command=/home/cowrie/cowrie/bin/cowrie start -n directory=/home/cowrie/cowrie/ user=cowrie autorestart=true redirect_stderr=true -Update the bin/cowrie script, change:: - - DAEMONIZE="" - -to:: - - DAEMONIZE="-n" - Configure Additional Output Plugins (OPTIONAL) **********************************************