codefiles

Results 91 comments of codefiles

See my comment here: https://github.com/archlinux/archinstall/issues/1386#issuecomment-1192017092. That error is because `"HSM": null` is expected when disk encryption is not being used, which is the case in this issue, and the argument...

The feature in the guided installer that allows one to save a `user_configuration.json` file does not populate defaults shown in the guided installer and other arguments that are needed for...

I noticed this as well and was searching to see if it was reported. The man page for [systemd-resolved(8)](https://man.archlinux.org/man/systemd-resolved.8#/ETC/RESOLV.CONF) states, of the four possible modes of handling `/etc/resolv.conf`, stub mode...

@Torxed What about a change that unifies "locale language" (`sys-language`) and "locale encoding" (`sys-encoding`) options to just "locale" (`sys-locale`)? Then a selection for locale would consist of both columns, `en_US.UTF-8...

The plan is to have multi-select and #1423 sets up what is needed for implementing this into the guided installer. Here is a demo of that pull request working with...

Waiting for #1423 and #1458 to be merged before submitting a pull request for this. ![locales](https://user-images.githubusercontent.com/11915375/189510847-ada4f25a-2e39-43d1-abf6-f8f1a400d16a.gif)

I've changed the scope of the pull request to focus on non-breaking changes. I will follow it up with a pull request for the unification of locale language and locale...

@Torxed, considering what you mentioned here: https://github.com/archlinux/archinstall/issues/1200#issuecomment-1130564952, is there a reason locale and hostname are not parameters to `minimal_installation()`? ```diff -def minimal_installation(self, testing=False, multilib=False) -> bool: +def minimal_installation(self, testing :bool...

@Torxed Thanks for the insight. I'm just getting familiar with the project. I wanted to make sure I wasn't overlooking anything because it seems like an easy fix that would...

My thinking behind validating against `/etc/locale.gen` is that this file contains the locales that are supported by glibc. It gets created by the glibc [PKGBUILD](https://github.com/archlinux/svntogit-packages/blob/128eb3280665c0f227e7c514da1f7060efa5873f/trunk/PKGBUILD#L183-L186) using the [SUPPORTED](https://sourceware.org/git/?p=glibc.git;a=blob;f=localedata/SUPPORTED;h=c8b63cc2fe2b4547f2fb1bff6193da68d70bd563;hb=HEAD) file from...