From db9decc0f0450657d4e45aa7fe5bc15fe0292a74 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 13 Oct 2019 14:13:21 +0200 Subject: Test run for config in new_archinstall.sh. --- bin/config_writer.py | 12 +++++++++++- new_archinstall.sh | 3 ++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/bin/config_writer.py b/bin/config_writer.py index b0963eb..43f6764 100644 --- a/bin/config_writer.py +++ b/bin/config_writer.py @@ -24,15 +24,25 @@ import sys +import json log_file_path = sys.argv[1] +config_file_path = sys.argv[2] def output(text): print(text) with open(log_file_path, 'a') as f: f.write(text) + f.write("") -output("Hello world!") +config = {} + + +config["test"] = "testing" +config["test2"] = 2 + +config_json = json.dumps(config) +output(config_json) diff --git a/new_archinstall.sh b/new_archinstall.sh index f231dfd..bdfc500 100644 --- a/new_archinstall.sh +++ b/new_archinstall.sh @@ -117,7 +117,8 @@ output "Generating config ..." script_path=$SCRIPT_BASE_PATH script_path+="config_writer.py" -python $script_path $LOG_FILE_PATH +python $script_path $LOG_FILE_PATH $CONFIG_FILE_PATH +output "Generated config - OK" # Generate new system ... -- cgit v1.2.3-70-g09d2