swh:1:snp:5789d5563ae0ff1fac9d4620526a6e02863df326
Raw File
Tip revision: 89a5644c756e1a2d8e8a6f05115e1112ad0cca0e authored by Feiyu Du on 13 June 2016, 15:23:35 UTC
Merge pull request #1451 from dufeiyu/pindel
Tip revision: 89a5644
genome-search-index-queue.conf
# genome-search-index-queue
#
# This is the daemon that monitors the search index queue to add/remove
# items to our search engine.
#
# *** This is in version control.
# *** Do not make changes to this file directly.

description "genome search index queue"

start on runlevel [2345]
stop on runlevel [!2345]

respawn

env RUN_AS_USER='apipe-builder'
env LOG_DIR='/var/log/genome'
env LOG_FILE="/var/log/genome/search-index-queue.log"

umask 0755

pre-start script
    if [ ! -d "$LOG_DIR" ]; then
        mkdir -p "$LOG_DIR"
        chmod 755 "$LOG_DIR"
        chown "$RUN_AS_USER" "$LOG_DIR"
    fi
end script

script
    GENOME=$(/gsc/scripts/sbin/gsc-cron-user which genome)
    exec sudo -i -u $RUN_AS_USER /gsc/scripts/sbin/gsc-cron-user $GENOME sys search index daemon --noconfirm --noscreen --log-file-level info --log-file $LOG_FILE
end script
back to top