index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-11-18 15:56:38 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-11-18 15:56:38 +0000 |
commit | caa83221a755e5d9f9284bbc8b5f4ddfa724c05c (patch) | |
tree | a9ed778361ba493ccf3c51b8fa49fcc86aaef0f8 | |
parent | 69810abb16478889118bdba1fed5c572acf33b5a (diff) |
-rw-r--r-- | archinstall/__init__.py | 8 |
diff --git a/archinstall/__init__.py b/archinstall/__init__.py index 30ed8667..a528922f 100644 --- a/archinstall/__init__.py +++ b/archinstall/__init__.py @@ -49,12 +49,15 @@ def initialize_arguments(): with urllib.request.urlopen(urllib.request.Request(args.config, headers={'User-Agent': 'ArchInstall'})) as response: config = json.loads(response.read()) except Exception as e: - print(e) + raise ValueError(f"Could not load --config because: {e}") + if args.creds is not None: with open(args.creds) as file: config.update(json.load(file)) + # Installation can't be silent if config is not passed config["silent"] = args.silent + for arg in unknowns: if '--' == arg[:2]: if '=' in arg: @@ -62,9 +65,12 @@ def initialize_arguments(): else: key, val = arg[2:], True config[key] = val + config["script"] = args.script + if args.dry_run is not None: config["dry-run"] = args.dry_run + return config |