summaryrefslogtreecommitdiff
path: root/etc/guix-install.sh
AgeCommit message (Collapse)Author
2019-02-05guix-install.sh: Avoid "#!/bin/bash" shebang.Ludovic Courtès
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.
2018-12-13guix-install.sh: Use pool.sks-keyservers.net.Ludovic Courtès
"pgp.mit.edu" has been unavailable for some time. * etc/guix-install.sh (chk_require): Change key server to pool.sks-keyservers.net.
2018-12-05guix-install.sh: Use the "ci.guix.info.pub" file name for clarity.v0.16.0Ludovic Courtès
* etc/guix-install.sh (sys_authorize_build_farms): Use the "ci.guix.info.pub" file name rather "berlin.guixsd.org.pub".
2018-11-23build: Binary tarball now populates the "current-guix" profile.Ludovic Courtès
* 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.
2018-10-14guix-install.sh: Recognize armhf-linux.Ludovic Courtès
* etc/guix-install.sh (chk_sys_arch): Add "armv7l" case.
2018-05-19guix-install.sh: Fix chk_require exiting without warning.Maxim Cournoyer
* 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>
2018-03-29guix-install.sh: Explicitly set root's home directory.Chris Marusich
* 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>
2018-02-21etc: guix-install.sh: Add aarch64-linux support.Efraim Flashner
* etc/guix-install.sh (chk_sys_arch): Add aarch64 case.
2018-01-30etc: Add installation script.Ricardo Wurmus
* 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>