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.
This commit is contained in:
adam-qomodo 2024-01-13 04:58:25 +00:00 committed by GitHub
parent c9507f782c
commit fad907ae9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 9 deletions

View File

@ -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)
**********************************************