J'ai un script simple qui démarre une instance de licorne (sur Ubuntu 12.04LTS). #!/bin/sh case "$1" in start) echo "starting" cd /path && bundle exec unicorn -c /path/config/unicorn.rb -D -E production ;; stop) echo "Stopping Unicorn Instances" kill `cat /tmp/unicorn.pid` ;; restart) echo...
8
Problèmes de PATH pour les scripts init.d au démarrage