index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-15 23:57:57 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-15 23:57:57 +0000 |
commit | 47fdf30fe1cbf74f2e45dcf58b317f7a1168d542 (patch) | |
tree | cef5ed13309944c87b25ec664625cbef295d6178 /archinstall.py | |
parent | 392cdbc81595a42f917bcc61a3ec17df8bbadcd0 (diff) |
-rw-r--r-- | archinstall.py | 34 |
diff --git a/archinstall.py b/archinstall.py index 10266545..90f4d056 100644 --- a/archinstall.py +++ b/archinstall.py @@ -11,10 +11,13 @@ from time import sleep, time from random import choice from string import ascii_uppercase, ascii_lowercase, digits +if not os.path.isdir('/sys/firmware/efi'): + print('[E] This script only supports UEFI-booted machines.') + exit(1) + ## == Profiles Path can be set via --profiles-path=/path ## This just sets the default path if the parameter is omitted. profiles_path = 'https://raw.githubusercontent.com/Torxed/archinstall/master/deployments' - try: import psutil except: @@ -495,14 +498,7 @@ def merge_dicts(d1, d2, before=True, overwrite=False): def random_string(l): return ''.join(choice(ascii_uppercase + ascii_lowercase + digits) for i in range(l)) -if __name__ == '__main__': - update_git() # Breaks and restarts the script if an update was found. - update_drive_list() - if not os.path.isdir('/sys/firmware/efi'): - print('[E] This script only supports UEFI-booted machines.') - exit(1) - - ## Setup some defaults (in case no command-line parameters or netdeploy-params were given) +def setup_args_defaults(args): if not 'size' in args: args['size'] = '100%' if not 'start' in args: args['start'] = '513MiB' if not 'pwfile' in args: args['pwfile'] = '/tmp/diskpw' @@ -542,9 +538,9 @@ if __name__ == '__main__': exit(1) args['drive'] = drive + return args - ## == If we got networking, - # Try fetching instructions for this box and execute them. +def load_instruction_set(): instructions = {} if get_default_gateway_linux(): locmac = get_local_MACs() @@ -572,6 +568,20 @@ if __name__ == '__main__': else: print('[N] No gateway - No net deploy') + return instructions + +if __name__ == '__main__': + update_git() # Breaks and restarts the script if an update was found. + update_drive_list() + + ## Setup some defaults + # (in case no command-line parameters or netdeploy-params were given) + args = setup_args_defaults(args) + + ## == If we got networking, + # Try fetching instructions for this box and execute them. + instructions = load_instruction_set() + if args['profile'] and not args['default']: instructions = get_instructions(args['profile']) if len(instructions) <= 0: @@ -642,8 +652,6 @@ if __name__ == '__main__': # with open(args['pwfile'], 'r') as pw: # PIN = pw.read().strip() - - print() print('[!] Disk PASSWORD is: {}'.format(args['password'])) print() |