Skip to content

Commit d625ae9

Browse files
committed
rename OPENGROK_REMOTE_REPOS to OPENGROK_GENERATE_HISTORY
1 parent f3ec761 commit d625ae9

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

OpenGrok

+13-12
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,15 @@
4242
# through project, it's good to have Verbose
4343
# Mode enabled too, cost of this is one more
4444
# traversal of the project before indexing it(*)
45-
# - OPENGROK_REMOTE_REPOS Influence history cache generation for remote
46-
# repositories. Following values are recognized:
47-
# on - enabled (default)
48-
# off - disabled for indexing and UI
49-
# dirbased - indexing enabled only for repos
50-
# which can fetch history for
51-
# directory
52-
# uionly - enabled for UI only
45+
# - OPENGROK_GENERATE_HISTORY Influence history cache generation
46+
# Following values are recognized:
47+
# on - enabled (default)
48+
# off - disabled for indexing and UI
49+
# dirbased - indexing enabled only for repos
50+
# which can fetch history for
51+
# directory
52+
# local - for local repos only
53+
# uionly - enabled for UI only
5354
# - OPENGROK_SCAN_REPOS Disable Scan for repositories (*)
5455
# - OPENGROK_SCAN_DEPTH how deep should scanning for repos go
5556
# (by default 3 directories from SRC_ROOT)
@@ -254,10 +255,10 @@ DefaultInstanceConfiguration()
254255
fi
255256

256257
# OPTIONAL: Disable remote repository support (CVS or SVN) [on by default]
257-
REMOTE_REPOSITORIES="-r on"
258-
if [ -n "${OPENGROK_REMOTE_REPOS}" ]
258+
GENERATE_HISTORY="-r on"
259+
if [ -n "${OPENGROK_GENERATE_HISTORY}" ]
259260
then
260-
REMOTE_REPOSITORIES="-r ${OPENGROK_REMOTE_REPOS}"
261+
GENERATE_HISTORY="-r ${OPENGROK_GENERATE_HISTORY}"
261262
fi
262263

263264
# OPTIONAL: override depth of scanning for repositories
@@ -797,7 +798,7 @@ CommonInvocation()
797798
${IGNORE_PATTERNS} \
798799
${DERBY_OPTIONS} \
799800
${HISTORY_TAGS} \
800-
${REMOTE_REPOSITORIES} \
801+
${GENERATE_HISTORY} \
801802
${SCAN_DEPTH} \
802803
${VERBOSE} ${QUIET} \
803804
${PROGRESS} \

0 commit comments

Comments
 (0)