mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-04 11:57:28 -08:00
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
71 lines
1.8 KiB
Plaintext
71 lines
1.8 KiB
Plaintext
# /etc/conf.d/celery
|
|
|
|
##############################################################################
|
|
# GLOBAL CONFIGURATION
|
|
|
|
# User and group
|
|
#CELERY_USER="celery"
|
|
#CELERY_GROUP="celery"
|
|
|
|
# Is this for a django project ?
|
|
# If 'yes' it will automatically setup CELERYD, CELERYCTL
|
|
# CELERYD_MULTI, CELERYBEAT, CELERYEV and CELERYEV_CAM for a
|
|
# django project, but you can still override them here.
|
|
#CELERY_DJANGO="yes"
|
|
|
|
# This is generaly a good idea to set the environment correctly
|
|
# because a lot of python package try to use HOME on init
|
|
#export HOME="/var/lib/myproject"
|
|
|
|
# Full path to the python project directory.
|
|
#CELERY_PROJDIR="/var/lib/myproject"
|
|
|
|
##############################################################################
|
|
# CELERYD
|
|
|
|
#CELERYD_ENABLED="yes"
|
|
|
|
# celeryd notes
|
|
#CELERYD_NODES="celery"
|
|
|
|
# celeryd options
|
|
# Example: 5 minute hard time limit for tasks
|
|
#CELERYD_OPTS="--time-limit=300"
|
|
|
|
# Location and level of the celeryd log file
|
|
#CELERYD_LOG_FILE=/var/log/celery/celeryd@%n.log
|
|
#CELERYD_LOG_LEVEL="INFO"
|
|
|
|
# Location of the celeryd pid file
|
|
#CELERYD_PID_FILE=/var/run/celery/celeryd@%n.pid
|
|
|
|
##############################################################################
|
|
# CELERYBEAT
|
|
|
|
#CELERYBEAT_ENABLED="yes"
|
|
|
|
# celerybeat options
|
|
#CELERYBEAT_OPTS=""
|
|
|
|
# Location and level of the celerybeat log file
|
|
#CELERYBEAT_LOG_FILE=/var/log/celery/celerybeat.log
|
|
#CELERYBEAT_LOG_LEVEL="INFO"
|
|
|
|
# Location of the celerybeat pid file
|
|
#CELERYBEAT_PID_FILE=/var/run/celery/celerybeat.pid
|
|
|
|
##############################################################################
|
|
# CELERYEV
|
|
|
|
#CELERYEV_ENABLED="yes"
|
|
|
|
# celeryev options
|
|
#CELERYEV_OPTS=""
|
|
|
|
# Location and level of the celeryev log file
|
|
#CELERYEV_LOG_FILE=/var/log/celery/celeryev.log
|
|
#CELERYEV_LOG_LEVEL="INFO"
|
|
|
|
# Location of the celeryev pid file
|
|
#CELERYEV_PID_FILE=/var/run/celery/celeryev.pid
|