Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-11-08 10:57:20 +0100
committerGitHub <noreply@github.com>2020-11-08 10:57:20 +0100
commit16c98e8102d7de3622cf6db5d19b022386e98474 (patch)
treeef51702a7a55a38a1a710c4d3ca0c7d4c9069465 /examples
parent269a5fb2b98fe64477cc9e08068df6751a2a8191 (diff)
parentee9af976ca700f96480f2f1396ed861d78013204 (diff)
Introducing log data and support files
Logs are stored under `~/.cache/archinstall` and documentation has been updated.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py21
1 files changed, 18 insertions, 3 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 70c2050d..652852e0 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -1,5 +1,15 @@
+import getpass, time, json, sys, signal, os
import archinstall
-import getpass, time, json, sys, signal
+
+# Setup a global log file.
+# Archinstall will honor storage['logfile'] in most of it's functions log handle.
+log_root = os.path.join(os.path.expanduser('~/'), '.cache/archinstall')
+if not os.path.isdir(log_root):
+ os.makedirs(log_root)
+
+init_time = time.strftime('%Y-%m-%d_%H-%M-%S')
+milliseconds = int(str(time.time()).split('.')[1])
+archinstall.storage['logfile'] = f"{log_root}/install-session_{init_time}.{milliseconds}.log"
"""
This signal-handler chain (and global variable)
@@ -29,7 +39,7 @@ def perform_installation(device, boot_partition, language, mirrors):
# Certain services might be running that affects the system during installation.
# Currently, only one such service is "reflector.service" which updates /etc/pacman.d/mirrorlist
# We need to wait for it before we continue since we opted in to use a custom mirror/region.
- archinstall.log(f'Waiting for automatic mirror selection has completed before using custom mirrors.')
+ installation.log(f'Waiting for automatic mirror selection has completed before using custom mirrors.')
while 'dead' not in (status := archinstall.service_state('reflector')):
time.sleep(1)
@@ -136,6 +146,9 @@ while 1:
if type(profile) != str: # Got a imported profile
archinstall.storage['_guided']['profile'] = profile[0] # The second return is a module, and not a handle/object.
if not profile[1]._prep_function():
+ # TODO: See how we can incorporate this into
+ # the general log flow. As this is pre-installation
+ # session setup. Which creates the installation.log file.
archinstall.log(
' * Profile\'s preparation requirements was not fulfilled.',
bg='black',
@@ -162,9 +175,11 @@ while 1:
except archinstall.RequirementError as e:
print(e)
+
print()
print('This is your chosen configuration:')
-print(json.dumps(archinstall.storage['_guided'], indent=4, sort_keys=True, cls=archinstall.JSON))
+archinstall.log("-- Guided template chosen (with below config) --", level=archinstall.LOG_LEVELS.Debug)
+archinstall.log(json.dumps(archinstall.storage['_guided'], indent=4, sort_keys=True, cls=archinstall.JSON), level=archinstall.LOG_LEVELS.Info)
print()
"""