isolate: patch to take config file by environment variable

This commit is contained in:
Vir Chaudhury 2024-04-22 05:55:40 +08:00
parent 0642b66350
commit 6eb807eef0
2 changed files with 22 additions and 0 deletions

View File

@ -30,6 +30,9 @@ stdenv.mkDerivation rec {
systemdLibs.dev
];
patches = [
./take-config-file-from-env.patch
];
installPhase = ''
runHook preInstall

View File

@ -0,0 +1,19 @@
diff --git a/config.c b/config.c
index 6477259..c462ed3 100644
--- a/config.c
+++ b/config.c
@@ -114,9 +114,12 @@ cf_check(void)
void
cf_parse(void)
{
- FILE *f = fopen(CONFIG_FILE, "r");
+ char *config_file = getenv("ISOLATE_CONFIG_FILE");
+ if(!config_file)
+ die("ISOLATE_CONFIG_FILE environment variable not set");
+ FILE *f = fopen(config_file, "r");
if (!f)
- die("Cannot open %s: %m", CONFIG_FILE);
+ die("Cannot open %s: %m", config_file);
char line[MAX_LINE_LEN];
while (fgets(line, sizeof(line), f))