mirror of
https://git.zx2c4.com/cgit/
synced 2024-11-04 06:00:44 +00:00
make config adjustable via env variable CGIT_CONFIG
Signed-off-by: Michael Krelin <hacker@klever.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
16a3d2779c
commit
51f6547879
4
cgit.c
4
cgit.c
@ -222,6 +222,7 @@ static void cgit_parse_args(int argc, const char **argv)
|
||||
int main(int argc, const char **argv)
|
||||
{
|
||||
struct cacheitem item;
|
||||
const char *cgit_config_env = getenv("CGIT_CONFIG");
|
||||
|
||||
htmlfd = STDOUT_FILENO;
|
||||
item.st.st_mtime = time(NULL);
|
||||
@ -229,7 +230,8 @@ int main(int argc, const char **argv)
|
||||
cgit_repolist.count = 0;
|
||||
cgit_repolist.repos = NULL;
|
||||
|
||||
cgit_read_config(CGIT_CONFIG, cgit_global_config_cb);
|
||||
cgit_read_config(cgit_config_env ? cgit_config_env : CGIT_CONFIG,
|
||||
cgit_global_config_cb);
|
||||
cgit_repo = NULL;
|
||||
if (getenv("SCRIPT_NAME"))
|
||||
cgit_script_name = xstrdup(getenv("SCRIPT_NAME"));
|
||||
|
Loading…
Reference in New Issue
Block a user