docs/etc_defaults_fixbot-logwatch
changeset 42 ccd6d5632ca0
parent 41 9be5b4525e78
child 43 78bc61c677d8
equal deleted inserted replaced
41:9be5b4525e78 42:ccd6d5632ca0
     1 
       
     2 # what the CWD should be
       
     3 RUN_DIR=/home/terom/projects/FixBot
       
     4 
       
     5 # what user to run as
       
     6 RUN_UID=fixbot-dev
       
     7 
       
     8 # logfile to use
       
     9 LOG_FILE=$RUN_DIR/logs/logwatch.log
       
    10 
       
    11 # twistd options
       
    12 TWISTD_ARGS=" \
       
    13     --uid=$RUN_UID  \
       
    14     --gid=nogroup   \
       
    15     --rundir=$RUN_DIR   \
       
    16     --logfile=$LOG_FILE "
       
    17 
       
    18 # fixbot options
       
    19 FIXBOT_ARGS=" \
       
    20     --api-port=34889    "
       
    21 
       
    22 # plugins/modules are loaded from RUN_DIR
       
    23 export "PYTHONPATH=$RUN_DIR"
       
    24