aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2024-09-06 18:35:16 +0200
committerAndreas Enge <andreas@enge.fr>2024-09-06 18:41:31 +0200
commit997eabecc02fff9d75c8f8bdf07a94e547dd8d5a (patch)
treeb251f57bf1262b056a1b920e8b05ccf2bb4fed9b /tests
parent643e7ecbe6079e8cc2275cc6cdf1cda04f6f818a (diff)
downloadguix-997eabecc02fff9d75c8f8bdf07a94e547dd8d5a.tar.gz
guix-997eabecc02fff9d75c8f8bdf07a94e547dd8d5a.zip
Add myself to teams.
* etc/teams.scm: Add teams to myself. Change-Id: I4d8c5bc5144cdd094063960c079527628ace4bbc
Diffstat (limited to 'tests')
0 files changed, 0 insertions, 0 deletions
stall.sh: Export INFOPATH to contain updated guix info-pages...* etc/guix-install.sh (sys_create_init_profile): Export INFOPATH to include the updated info-pages from ~/.config/guix/current/share/info. This also makes sure that both /usr/bin/info and $GUIX_PROFILE/bin/info can read guix info pages without throwing "no menu item 'guix' in node dir(Top)" error. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Prafulla Giri 2020-01-17guix-install.sh: Create an init profile during installation...Create an init profile (/etc/profile.d/guix.sh) during installation for better integration with foreign distros. This file, read by login-shells sets a few environment variables (PATH, GUIX_PROFILE, GUIX_LOCALE, along with XDG_DATA_DIRS) and makes guix-installed packages readily available for the users. Other environment variables, as listed by `guix package --search-paths=prefix`, are also exported. Checks are in place to prevent the init profile from needlessly polluting the user's environment. * etc/guix-install.sh (sys_create_init_profile): New function to create /etc/profile.d/guix.sh init profile. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Prafulla Giri 2019-12-04guix-install.sh: Use a deterministic umask....Users with strict umasks (e.g. 0077) would end up with an unreadable /gnu (mode 0700) and no way to run guix. Reported by A. <@aaap:matrix.org> on #guix. * etc/guix-install.sh (main): Set umask before installing anything. Tobias Geerinckx-Rice