Sha256: 49eae22fc72daf7b105000dedbae114861566b0aa0f0f81ab474759ac8f2977d
Contents?: true
Size: 709 Bytes
Versions: 75
Compression:
Stored size: 709 Bytes
Contents
#!/bin/bash # # backlog Startup script for the backlog application # # chkconfig: 345 88 12 # description: Backlog # See how we were called. case "$1" in start) mongrel_rails start -p 3000 -e datek_production -c /usr/local/backlog/current -d -m /usr/local/backlog/current/config/mime_types.yaml 1>/usr/local/backlog/current/log/stdout.log 2>/usr/local/backlog/current/log/stderr.log ;; stop) mongrel_rails stop -c /usr/local/backlog/current ;; restart) mongrel_rails restart -c /usr/local/backlog/current ;; status) ps -ef | grep backlog ;; *) echo $"Usage: $prog {start|stop|restart|status}" exit 1 esac exit 0
Version data entries
75 entries across 44 versions & 1 rubygems