Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-27 21:02:53 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-27 21:02:53 +0000
commitdb24153dd7d610d86909b21c13698ca1675c823a (patch)
treeb5a0c397cdf2026aac317032e3e6e0bb757c4bc9
parentd7e5da5467268fa154d2b04beb0f1a8cf6f42079 (diff)
Fixes for transition
-rw-r--r--archinstall.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/archinstall.py b/archinstall.py
index 79e4faf8..d4d55021 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -1244,6 +1244,20 @@ if __name__ == '__main__':
o = b''.join(sys_command('/usr/bin/arch-chroot /mnt sh -c "userdel aibuilder"'))
o = b''.join(sys_command('/usr/bin/arch-chroot /mnt sh -c "rm -rf /home/aibuilder"'))
+ if args['phone-home']:
+ payload = json.dumps({"hostname": args['hostname'],
+ "done" : time.time(),
+ "profile": args['profile'],
+ "drive": args['drive'],
+ "base_status": base_return_code
+ }).encode('utf8')
+ request = urllib.request.Request(args['phone-home'],
+ data=payload,
+ headers={'content-type': 'application/json'})
+ response = urllib.request.urlopen(request)
+ print(response)
+ time.sleep(2)
+
## == Passwords
# o = sys_command('arch-chroot /mnt usermod --password {} root'.format(args['password']))
# o = sys_command("arch-chroot /mnt sh -c 'echo {pin} | passwd --stdin root'".format(pin='"{pin}"'.format(**args, pin=args['password'])), echo=True)
@@ -1257,17 +1271,3 @@ if __name__ == '__main__':
o = simple_command('/usr/bin/reboot now')
else:
print('Done. "umount -R /mnt; reboot" when you\'re done tinkering.')
-
- if args['phone-home']:
- payload = json.dumps({"hostname": args['hostname'],
- "done" : time(),
- "profile": args['profile'],
- "drive": args['drive'],
- "base_status": base_return_code
- }).encode('utf8')
- request = urllib.request.Request(args['phone-home'],
- data=payload,
- headers={'content-type': 'application/json'})
- response = urllib.request.urlopen(request)
- print(response)
- time.sleep(2) \ No newline at end of file