index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-29 | Merging in find_installation_script() into Script() for a more unified ↵ | Anton Hvornum | |
handler of any given script type or location. Which should correct #62. | |||
2020-11-29 | Lowering MAC addresses for file-name comparison against local mac addresses ↵ | Anton Hvornum | |
in #62 | |||
2020-11-29 | Added a bit more detail to HTTP errors. | Anton Hvornum | |
2020-11-29 | Spelling error | Anton Hvornum | |
2020-11-29 | Removed find_examples() and moved example finding paths into ↵ | Anton Hvornum | |
archinstall.storage. Otherwise they won't share the variable instance across imports (mutables vs non-mutables i guess). In an attempt to fix #62 | |||
2020-11-29 | Forgot a few imports | Anton Hvornum | |
2020-11-29 | Removed unreliable find_examples() and will use list_profiles() instead, as ↵ | Anton Hvornum | |
it covers a wider range of profiles and search area. | |||
2020-11-29 | Trying to combat #62. By implementing a UPSTREAM_URL variable globally, ↵ | Anton Hvornum | |
which can be controlled, as well as a PROFILE_PATH which controls where it should look for profiles. the list_profiles() should be more robust. | |||
2020-11-11 | Added minor error handling in installer.set_keyboard_language() | Anton Hvornum | |
2020-11-11 | Fixed generic_select() to accept (and break on) empty selects. | Anton Hvornum | |
2020-11-11 | Added a simple INI handler, and a helper function under ↵ | Anton Hvornum | |
Installer().configure_nic() to help with nic configuration. Supports a crude DHCP configuration and a minimal static IP handler. | |||
2020-11-09 | Fixed #63 | Anton Hvornum | |
Validate against /groups as well. There's not really a search API that I could find *(with little effort on my part to try and find it)*. So I went ahead and just check for HTTP 200 on the package URL. This won't give search functionality, but it will at least validate a group definition. | |||
2020-11-08 | Fixing a variable missmatch in #61. The global configuration snapshot (that ↵ | Anton Hvornum | |
is used for debug printing) does not contain the password for the new user (for safety reasons). So we can no longer get the password from that snapshot, but instead we have to get it from the global variable users (:dict). | |||
2020-11-08 | Added some more debugging | Anton Hvornum | |
2020-11-08 | Tweaked #58 slightly. Execution is done with an attempt to retain file line ↵ | Anton Hvornum | |
numbers when executing. It also consolidates behavior of files and remote documents in a 'similar' manner. | |||
2020-11-08 | Updated documentation | Anton Hvornum | |
Related to the new log features. | |||
2020-11-06 | Forgot an import of storage. | Anton Hvornum | |
2020-11-05 | Fallback automatically to a log file if we can detect one, even tho file was ↵ | Anton Hvornum | |
never given in the log() call. This might cause some log posts to slip in to the logs, but use suppress=True to force-ignore those in such a case. | |||
2020-11-04 | Tweaked some log messages in archinstall.Installer() | Anton Hvornum | |
2020-11-04 | Logic issue minor fix. | Anton Hvornum | |
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 | Cleaned up some logic. How the LOG_LEVEL is fetched from the storage. | Anton Hvornum | |
2020-11-04 | Forgot an import of storage. | Anton Hvornum | |
2020-11-04 | installer.log() should not be a property. | Anton Hvornum | |
2020-11-04 | Forgot an import of storage. | Anton Hvornum | |
2020-11-04 | Spelling error on systemd-bootctl. | Anton Hvornum | |
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-20 | Preparing log-data and debug output. | Anton Hvornum | |
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 | Made Profile() json-dumpable | Anton Hvornum | |
2020-10-18 | Forgot an import, as well as made BlockDevice() have less verbose output on ↵ | Anton Hvornum | |
json.dumps. | |||
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-18 | Added error handling to guided.py when not selecting a profile to install. | Anton Hvornum | |
2020-10-18 | Wrong relative import, corrected to avoid .lib.lib.exceptions | Anton Hvornum | |
2020-10-18 | Merge remote-tracking branch 'origin' into guided | Anton Hvornum | |
2020-10-18 | Logical issue with how I'm used to dealing with selecting list indexes. | Anton Hvornum | |
2020-10-18 | Added a session-storag. This is in an attempt to build away some magic ↵ | Anton Hvornum | |
functionality that might otherwise be hard to understand/maintain over a long period of time. Using this in profiles/desktop.py as a test. | |||
2020-10-18 | Wrong variable name (from a copy paste issue) | Anton Hvornum | |
2020-10-18 | Merge remote-tracking branch 'origin' into profile | Anton Hvornum | |
2020-10-18 | Reverted TTS implementation from 35913c4. Since blind people use screen ↵ | Anton Hvornum | |
readers for this functionality. Will have a look at http://www.linux-sppeakup.org/. | |||
2020-10-18 | Added profile `desktop.py` which helps users select a desktop environment. ↵ | Anton Hvornum | |
Also added `archinstall.generic_select` to help with selecting generic things from a list of options. | |||
2020-10-18 | Implementing error handling for #50. So that the errors do not come at the ↵ | Anton Hvornum | |
very end, but in the beginning right after the user inputted something (quicker feedback to the user). | |||
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-10-01 | Added user_interaction documentation. | Anton Hvornum | |
2020-09-30 | Tweaked the import logic so that the Imported() class returns the actual ↵ | Anton Hvornum | |
module imported when executing the import, rather than returning itself. Also fixed awesome so that it loads and looks for _prep_function() with a safe and correct namespace | |||
2020-09-30 | Fixing a import logic issue. We don't want to trigger if __name__ ... during ↵ | Anton Hvornum | |
_prep_function() calls. So we'll import the module with a specific namespace containing the .py which shouldn't be able to happen when normal programmers do normal imports as .py gets removed normally. |