Saya memiliki skrip sederhana yang memulai contoh unicorn (di 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` ;;...
8
Masalah PATH untuk skrip init.d saat startup