diff options
-rw-r--r-- | bin/config_writer.py | 12 | ||||
-rw-r--r-- | 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 ... |