|
|
|
|
|
by megous
1908 days ago
|
|
Why would it not work correctly? Without systemd you can use daemonize from shell, for example. I either run these kinds of service scripts via systemd in production, or via my special program that takes care of starting and monitoring, and restarting when the code of the script changes. Why should I stuff daemonization machinery into every single script I might want to run as a daemon, especially when it's cumbersome in many languages where I want to do it, like bash or PHP, and in general less flexible than using some external tool? |
|
it is true that it's rare to see a daemonize flag these days...