Launching a PHP daemon from an LSB init script w/ start-stop-daemon
- by EvanK
I'm writing an lsb init script (admittedly something I've never done from scratch) that launches a php script that daemonizes itself. The php script starts off like so:
#!/usr/bin/env php
<?php
/* do some stuff */
It's then started like so in the init script:
# first line is args to start-stop-daemon, second line is args to php-script…