https://github.com/genome/genome
Raw File
Tip revision: de1be5e12d5fefd605edcb2c267fea7cd82e8a5a authored by Feiyu Du on 15 November 2012, 17:21:31 UTC
add files to ignore by diff
Tip revision: de1be5e
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