blob: a70d2b7465af71a3e0108aa15e33e7d828510879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# RUN_OGADMSERVER defined as OpenGnsys Admin Server
# RUN_OGADMREPO defined as OpenGnsys Repository Manager
# RUN_OGADMAGENT run task scheduler service (only if Admin Server is enabled)
# RUN_BTTRACKER run Bittorrent Tracker (only if Repository is enabled)
# RUN_BTSEEDER start seeding of selected torrent files (only if Repository is enabled)
# BTSEEDER_PRIORITY nice priority to seed torrent files; recommended values:
# 8 for Admin Server or Repo without Torrent
# 0 for Admin Server and Repo with Torrent
# -8 for Repo with Torrent
# RUN_CRON run Cron script to check started processes
RUN_OGADMSERVER="yes"
RUN_OGADMREPO="yes"
RUN_OGADMAGENT="yes"
RUN_BTTRACKER="yes"
RUN_BTSEEDER="yes"
BTSEEDER_PRIORITY=0
RUN_CRONJOB="yes"
|