index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-23 | Also setting cwd (bad choice of name) to the workdir if one was specified. ↵ | Anton Hvornum | |
Which makes the trace.log to end up in the workdir as well. | |||
2021-03-23 | Enabling archinstall.sys_command() to get a working directory when ↵ | Anton Hvornum | |
executing. The sys_command() is working pretty well for this very specific need, but this is an attempt to making it a bit more generic. A more general overhaul of the command should be done at some point. | |||
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-08 | Fixed the JSON_Encoder. The issue was that dictionaries are mutable, and ↵ | Anton Hvornum | |
dumping dictionaries and replacing keys also replaces the original value. | |||
2021-02-17 | Testing auto-filter in the JSON encoder based on ! points markering ↵ | Anton Hvornum | |
sensitive data. | |||
2021-01-25 | Added some more fields to the configuration output, as well as added a ↵ | Anton Hvornum | |
better fail safe for the logging output. Any exception during the installation will be caught by __exit__ in Installer(), hopefully. | |||
2020-12-07 | Fixing a strip glitch in `sys_command()` causing certain output to get ↵ | Anton Hvornum | |
truncated in unwanted places (like fstab) | |||
2020-11-04 | Fixed level issues on log output. Also tweaked it so that all log rows come ↵ | Anton Hvornum | |
to the log file, but not nessecarily the interactive screen (tty/journald). Also tweaked certain log messages to be printed vs not printed. | |||
2020-11-04 | Added multiple log features. | Anton Hvornum | |
* [Reintroduced](https://github.com/Torxed/archinstall/blob/f64a605449f59c677dff39962f1cb46616d893b7/archinstall.py#L57-L71) log levels * Created a global log file definition * Optional support for `python-systemd`'s journald handler. * Optional file output that has a globally configurable definition, that archinstall will honor in `archinstall.storage['logfile']`. | |||
2020-10-19 | Fix some PEP-8 errors. | Varun Madiath | |
2020-10-19 | Fix typo in function parameter | Varun Madiath | |
`suppress_errors` was previously spelt `surpress_errors` | |||
2020-10-19 | Fix typos. | Varun Madiath | |
2020-10-18 | Forgot an import | Anton Hvornum | |
2020-10-18 | Removed a stub function | Anton Hvornum | |
2020-10-18 | Added a JSON serializer for certain non-json objects. | Anton Hvornum | |
2020-10-11 | Added text-to-speach, untested but the base is now added. It routes through ↵ | Anton Hvornum | |
if available. And can be accessed with directly if needed. | |||
2020-08-20 | Added missing function reboot(). Also tweaked the build scripts so that they ↵ | Anton Hvornum | |
fetch a common version from the file VERSION. And some spelling tweaks for the log output. | |||
2020-07-08 | Forgot to split the path, assumed it was a list | Anton Hvornum | |
2020-07-08 | rc6: Fixed an issue where 'which' doesn't return the binary absolute path. ↵ | Anton Hvornum | |
This due to which being a builtin bash thing, and for whatever reason that stopped working when running as a module, so created locate_binary(name:str) which uses the PATH variable just as which does to find the binary's absolute path | |||
2020-07-08 | Changed the cache directory to be under ~/.cache instead. Having it in a ↵ | Anton Hvornum | |
archinstall folder directly under the users catalogue caused some issues when doing 'import archinstall' when standing in the home directory after trying to uninstall archinstall heh | |||
2020-07-07 | Added pythons -m module support. __main__.py is the main module entry path, ↵ | Anton Hvornum | |
and setup.py now includes the examples (which as been renamed for more convenient module importing) which - enables __main__.py to locate the examples and import them via importlib and execute them. | |||
2020-07-07 | Added a raise on sys_command exit code being bad. Also updated readme to ↵ | Anton Hvornum | |
show how to test this locally | |||
2020-07-07 | Added colored output. Also tested non-encrypted installations and added ext4 ↵ | Anton Hvornum | |
support. | |||
2020-07-06 | Reworked final preparations for working with profiles and installing them. | Anton Hvornum | |
2020-07-06 | Converted the lib to a pip supported structure to make packaging easier. ↵ | Anton Hvornum | |
Also tweaked some minor issues and added the AUR function |