index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-21 | Cleaned up after some debugging. | Anton Hvornum | |
2021-03-21 | Spelling error on variable. | Anton Hvornum | |
2021-03-21 | Moved the globalization of 'installation' variable. Since Profile() might be ↵ | Anton Hvornum | |
created before the installation instance, we need to move the global variable declaration after installation has begun and there's an installation instance. | |||
2021-03-21 | Storing original namespace of profiles as they were during initation. ↵ | Anton Hvornum | |
Namespaces now get reverted back to the original state just before .install() is called. This ensures any temporary namespace changes made during prep-checks etc doesn't stick around when we try to install. | |||
2021-03-21 | Reverted reset_namespace idea. Didn't turn out as clean as I wanted it to. | Anton Hvornum | |
2021-03-21 | Enabling load_instructions() to set a temporary namespace, and then ↵ | Anton Hvornum | |
reverting it after the instructions are loaded. This is to temporarly override the namespace during import - enabling avoidance of triggering __name__ checks, and at the same time reverting back the namespace automatically to enable .execute() on the script (reusability of classes) | |||
2021-03-21 | Enabling load_instructions() to set a temporary namespace, and then ↵ | Anton Hvornum | |
reverting it after the instructions are loaded. This is to temporarly override the namespace during import - enabling avoidance of triggering __name__ checks, and at the same time reverting back the namespace automatically to enable .execute() on the script (reusability of classes) | |||
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Marking newly created partitions as safe to format in use_entire_disk(), by ↵ | Anton Hvornum | |
adding allow_formatting=True to the partitions. Also added some debugging to help aiding in support cases. | |||
2021-03-21 | Added some more debugging and error logs to the project. Mainly to indicate ↵ | Anton Hvornum | |
background tasks and errors to the debug log in case users need to submit it. | |||
2021-03-21 | Fixing minor issue in v2.1.2-rc3. The use_entire_disk() helper function was ↵ | Anton Hvornum | |
adding a partition with the format vfat, but parted doesn't understand this and needs fat32. | |||
2021-03-20 | Removed search logic for mirrors since we now have column-printouts, the ↵ | Anton Hvornum | |
columns enabled us to print all the regions which means the search was an excessive feature. | |||
2021-03-20 | Fix number padding based on length of the highest option index - instead of ↵ | Ninchester | |
using zeroes, now spaces are used | |||
2021-03-20 | Make option list 0-index based | Ninchester | |
2021-03-20 | Add margin at the bottom | Ninchester | |
2021-03-20 | Print options in columns | Ninchester | |
2021-03-20 | Added helper functions for #81. So that we have a basic information about ↵ | Anton Hvornum | |
the terminal when outputting large lists/options. | |||
2021-03-20 | Fixed #64. installation.set_timezone() already excisted since earlier ↵ | Anton Hvornum | |
versions of archinstall in the library section. The guided.py example simply never asked for a time-zone. There's still no NTP option, which I'll add in later. Mostly because there's a lot of settings one can do to a time-client configuration, and I'm not sure all users want the default time servers etc. | |||
2021-03-14 | Added some error handling. | Anton Hvornum | |
2021-03-14 | encrypted devices won't always report as a child to a device, can't reliably ↵ | Anton Hvornum | |
look for a 'parent' of a encrypted drive when it doesn't show up. Hence, the DiskError() can't be raised just because we can't find a parent. The parent should be the current path if no other option was found. | |||
2021-03-14 | Made add_bootloader() a little bit more robust, it shouldn't overwrite the ↵ | Anton Hvornum | |
existing loader.conf completely, only the default option. We're still left with a lot of garbage entries if installed multiple times on the same boot partition. #51 | |||
2021-03-14 | Added error handling for install_profile() if string vs Profile() is given ↵ | Anton Hvornum | |
as an argument. | |||
2021-03-14 | Corrected some spelling errors and wrong variables. | Anton Hvornum | |
2021-03-14 | Using 'umount -R' rather than just 'umount' since we're going to wipe the ↵ | Anton Hvornum | |
partition, we need do unmount anything that's mounted beneeth it to continue. | |||
2021-03-14 | Removed redundant error handling as well as added some more debug logs. | Anton Hvornum | |
2021-03-14 | Enhanced the error handling on crypt-devices. | Anton Hvornum | |
2021-03-14 | Some more error handling. | Anton Hvornum | |
2021-03-14 | Added alias umount() to unmount(). | Anton Hvornum | |
2021-03-14 | Added some error handling for umount(). | Anton Hvornum | |
2021-03-14 | Wrong variable name. | Anton Hvornum | |
2021-03-14 | Tweaked SysCallError() exception to include the exit code in a machine ↵ | Anton Hvornum | |
readable manner. Since it's useful as an indicator where calls might go wrong and for what reason. | |||
2021-03-14 | Added a partition.umount() and a check when running cryptsetup if the disk ↵ | Anton Hvornum | |
is in use. | |||
2021-03-14 | Removing hardcoded boot-loader config name. #51. | Anton Hvornum | |
2021-03-09 | Fixed mirror-region parameter selection. Converting to actual mirrors. | Anton Hvornum | |
2021-03-09 | Carried over the allow_formatting from the parent device of luks2() devices. | Anton Hvornum | |
2021-03-09 | Forgot to set a variable | Anton Hvornum | |
2021-03-09 | Added option to skip autodetection of filesystem. This is so for instance ↵ | Anton Hvornum | |
luks2() can override any auto-detection that revers back to the parent device of the mapped device, which would be crypto_LUKS instead of None for the inner partition. | |||
2021-03-09 | Added some debugging. | Anton Hvornum | |
2021-03-09 | Tweaked the filesystem definition setup for Partition(). Overriding it ↵ | Anton Hvornum | |
programatically should be possible for some meta stuff. | |||
2021-03-09 | Added some debugging. | Anton Hvornum | |
2021-03-09 | Fixed luks2().close() to properly detect it's own mapped path | Anton Hvornum | |