We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After running procsd create the services were not starting and I was receiving:
procsd create
/bin/bash: -c: option requires an argument
It turns out that an argument is missing after the service file is generated. An exec should be added:
exec
ExecStart=/bin/bash -lc 'exec $BINDIR/gunicorn app.wsgi --log-file=- -b 127.0.0.1:$PORT --log-level DEBUG'
It also the same in Foreman. procsd does not add the exec to the script.
The text was updated successfully, but these errors were encountered:
I just manually added exec to my processes in the Procfile to get it running
Sorry, something went wrong.
No branches or pull requests
After running
procsd create
the services were not starting and I was receiving:It turns out that an argument is missing after the service file is generated. An
exec
should be added:It also the same in Foreman. procsd does not add the
exec
to the script.The text was updated successfully, but these errors were encountered: