From 96e8cc4d5b4bf6e23c3d30a745c1c4ff7cd61770 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Thu, 20 Aug 2020 22:16:53 +0000 Subject: Added a timeout on the HTTPS POST status after a successful install. --- examples/guided.py | 2 +- profiles/52-54-00-12-34-56.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/guided.py b/examples/guided.py index 1943a116..23785e7d 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -19,7 +19,7 @@ while (disk_password := getpass.getpass(prompt='Enter disk encryption password ( hostname = input('Desired hostname for the installation: ') if len(hostname) == 0: hostname = 'ArchInstall' -while (root_pw := getpass.getpass(prompt='Enter root password (leave blank for no password): ')): +while (root_pw := getpass.getpass(prompt='Enter root password (leave blank to leave root disabled): ')): root_pw_verification = getpass.getpass(prompt='And one more time for verification: ') if root_pw != root_pw_verification: archinstall.log(' * Passwords did not match * ', bg='black', fg='red') diff --git a/profiles/52-54-00-12-34-56.py b/profiles/52-54-00-12-34-56.py index 6e823360..352c5f66 100644 --- a/profiles/52-54-00-12-34-56.py +++ b/profiles/52-54-00-12-34-56.py @@ -38,4 +38,4 @@ with archinstall.Filesystem(harddrive, archinstall.GPT) as fs: req = urllib.request.Request("https://archlinux.life/build/successful", data=json.dumps(conditions).encode('utf8'), headers={'content-type': 'application/json'}) - urllib.request.urlopen(req) \ No newline at end of file + urllib.request.urlopen(req, timeout=5) \ No newline at end of file -- cgit v1.2.3-54-g00ecf