summaryrefslogtreecommitdiff
path: root/etc/guix-install.sh
Commit message (Collapse)AuthorAge
* guix-install.sh: Fix ‘systemctl not found’ error message at probe.Vincent Legoll2020-05-23
| | | | | | | * etc/guix-install.sh (chk_init_sys): Redirect systemctl errors to /dev/null. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
* guix-install.sh: Add xz to requirements.Vincent Legoll2020-05-23
| | | | | | * etc/guix-install.sh (REQUIRE): Add xz to requirements list. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
* etc: Install mount unit only if it exists.Tobias Geerinckx-Rice2020-05-17
| | | | | | | | | | | | This follows up on 1a1faa78b0498fbb71f1533beb4b65817c1d3f2a, and avoids the (non-fatal) error seen in <https://issues.guix.gnu.org/41356>. /gnu/store will remain writable on new foreign distribution installations until the next release. * etc/guix-install.sh (sys_enable_guix_daemon): Check for ‘gnu-store.mount’ presence before trying to cp it. Update forgotten copyright header.
* etc: Add a systemd unit to bind-mount @storedir@ read-only.Tobias Geerinckx-Rice2020-05-16
| | | | | | | | | * etc/gnu-store.mount.in: New file. * nix/local.mk (nodist_systemdservice_DATA): Add it. (etc/%.mount): New rule for it. * etc/guix-install.sh (sys_enable_guix_daemon): Install it. * doc/guix.texi (Binary Installation): Document it. * .gitignore: Ignore changes to it.
* guix-install.sh: /etc/profile.d/guix.sh sources ~/.guix-profile/etc/profile.Ludovic Courtès2020-03-22
| | | | | | * etc/guix-install.sh (sys_create_init_profile): Source ~/.guix-profile/etc/profile instead of running 'guix package --search-paths=prefix'
* guix-install.sh: Add a trailing colon to 'INFOPATH'.Ludovic Courtès2020-03-22
| | | | | | | | Fixes <https://bugs.gnu.org/39984>. Suggested by Adam Porter <adam@alphapapa.net>. * etc/guix-install.sh (sys_create_init_profile): Add a trailing colon to 'INFOPATH'.
* guix-install.sh: Install SysV init script.Danny Milosavljevic2020-03-11
| | | | * etc/guix-install.sh (sys_enable_guix_daemon): Install SysV init script.
* guix-install.sh: Correctly treat empty or unset $XDG_DATA_DIRSAlexander Krotov2020-01-26
| | | | | | | | | | | | | | | | | If $XDG_DATA_DIRS is unset, default value of "/usr/local/share:/usr/share" is used according to XDG Base Directory Specification. However, /etc/profile.d/guix.sh treats this value as empty list when appending its own directory, so after installing Guix on the system, launchers such as Rofi stop searching for .desktop files in /usr/share/applications/ and can't launch applications other than those installed with Guix. This patch fixes the bug in generated /etc/profile.d/guix.sh * etc/guix-install.sh (sys_create_init_profile): Use default value of /usr/local/share:/usr/share/ before appending if $XDG_DATA_DIRS is not set. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* guix-install.sh: Create /etc/profile.d if it does not existPrafulla Giri2020-01-26
| | | | | | | | | * etc/guix-install.sh (sys_create_init_profile): Add code to create /etc/profile.d if it somehow does not exist; the function still carries on because it is possible that /etc/profile is still configured to read the *.sh files from /etc/profile.d, if they exist. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* guix-install.sh: Export INFOPATH to contain updated guix info-pagesPrafulla Giri2020-01-26
| | | | | | | | | * 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>
* guix-install.sh: Create an init profile during installationPrafulla Giri2020-01-17
| | | | | | | | | | | | | | | | | 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>
* guix-install.sh: Use a deterministic umask.Tobias Geerinckx-Rice2019-12-04
| | | | | | | | | 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.
* guix-install.sh: Work around locale issues in 'guix-daemon.service'.Ludovic Courtès2019-09-05
| | | | | * etc/guix-install.sh (sys_enable_guix_daemon): Modify 'guix-daemon.service' to work around locale issues not fixed in 1.0.1.
* guix-install.sh: Don't initialise ~/.gnupg.Tobias Geerinckx-Rice2019-07-08
| | | | * etc/guix-install.sh (chk_gpg_keyring): Call gpg with ‘--dry-run’.
* guix-install.sh: Check for PGP key separately.Tobias Geerinckx-Rice2019-07-08
| | | | | | * etc/guix-install.sh (chk_gpg_keyring): New function to handle the public key check previously stuffed into chk_require. (main): Call it.
* guix-install.sh: Add missing ‘local’ declaration.Tobias Geerinckx-Rice2019-07-08
| | | | * etc/guix-install.sh (chk_require): Make $c local.
* guix-install.sh: Treat REQUIRE as the array it is.Tobias Geerinckx-Rice2019-07-08
| | | | | | | | Don't flatten it into a string only to split it again later. * etc/guix-install.sh (chk_require): Iterate over array elements, not string tokens. (main): Pass $REQUIRE as an array of arguments.
* etc: Do not recommend use of SKS key servers.Ricardo Wurmus2019-07-01
| | | | * etc/guix-install.sh: Recommend downloading the GPG key from Savannah.
* guix-install.sh: Don't authorise hydra.gnu.org.Tobias Geerinckx-Rice2019-06-29
| | | | | * etc/guix-install.sh (sys_authorize_build_farms): Authorise only ci.guix.gnu.org and make all references to it singular.
* etc: Refer to ci.guix.gnu.org in install script.Ricardo Wurmus2019-05-10
| | | | * etc/guix-install.sh: Replace reference to ci.guix.info with ci.guix.gnu.org.
* guix-install.sh: Update URL.Ludovic Courtès2019-05-02
| | | | * etc/guix-install.sh (GNU_URL): Change to ftp.gnu.org.
* guix-install.sh: Avoid "#!/bin/bash" shebang.Ludovic Courtès2019-02-05
| | | | | | | | Fixes <https://bugs.gnu.org/34279>. Reported by Claes Wallin (韋嘉誠) <clacke@lysator.liu.se>. * etc/guix-install.sh: Change shebang to #!/bin/sh and add 'if' statement to spawn Bash if needed.
* guix-install.sh: Use pool.sks-keyservers.net.Ludovic Courtès2018-12-13
| | | | | | | "pgp.mit.edu" has been unavailable for some time. * etc/guix-install.sh (chk_require): Change key server to pool.sks-keyservers.net.
* guix-install.sh: Use the "ci.guix.info.pub" file name for clarity.Ludovic Courtès2018-12-05
| | | | | * etc/guix-install.sh (sys_authorize_build_farms): Use the "ci.guix.info.pub" file name rather "berlin.guixsd.org.pub".
* build: Binary tarball now populates the "current-guix" profile.Ludovic Courtès2018-11-23
| | | | | | | | | | | | * Makefile.am (guix-binary.%.tar.xz): Pass '--profile-name=current-guix'. Remove glibc and glibc-utf8-locales. * doc/guix.texi (Binary Installation): Update accordingly. * etc/guix-install.sh * etc/guix-install.sh (sys_create_store, sys_enable_guix_daemon) (sys_authorize_build_farms): Likewise. * etc/guix-publish.conf.in, etc/guix-publish.service.in, etc/guix-daemon.conf.in, etc/guix-daemon.service.in: Update file names accordingly.
* guix-install.sh: Recognize armhf-linux.Ludovic Courtès2018-10-14
| | | | * etc/guix-install.sh (chk_sys_arch): Add "armv7l" case.
* guix-install.sh: Fix chk_require exiting without warning.Maxim Cournoyer2018-05-19
| | | | | | | | | * etc/guix-install.sh (chk_require): Because of the set -e option, Bash was exiting when the command `command -v "$c" &>/dev/null' was running on its own. Instead, we now test the command and accumulate warning messages in a single statement by chaining the command with a logical OR. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* guix-install.sh: Explicitly set root's home directory.Chris Marusich2018-03-29
| | | | | | | | | | | * etc/guix-install.sh (ROOT_HOME): New variable. (sys_create_store, sys_enable_guix_daemon, sys_authorize_build_farms): Use ROOT_HOME instead of ~root or the HOME environment variable. * doc/guix.texi (Binary Installation): Instead of assuming that ~ and $HOME refer to root's directory simply because commands are being run as root, explicilty refer to it via ~root. Fixes: <https://bugs.gnu.org/30728>
* etc: guix-install.sh: Add aarch64-linux support.Efraim Flashner2018-02-21
| | | | * etc/guix-install.sh (chk_sys_arch): Add aarch64 case.
* etc: Add installation script.Ricardo Wurmus2018-01-30
* etc/guix-install.sh: New file. * Makefile.am (EXTRA_DIST): Add it. * doc/guix.texi (Binary Installation): Mention it. Co-authored-by: sharlatan <sharlatanus@gmail.com>