diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-05-31 22:01:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-05-31 22:01:05 +0200 |
commit | 548d4c139561b2da769561905f3f8134a11bb2d4 (patch) | |
tree | 7e8e5e600a98b1c6a4cb3aa5353bdff643189cf0 /build-aux/hydra | |
parent | 52322163ac4b730a62af67549583d89ee496aeff (diff) | |
download | guix-548d4c139561b2da769561905f3f8134a11bb2d4.tar guix-548d4c139561b2da769561905f3f8134a11bb2d4.tar.gz |
system: Add 'issue' field.
* gnu/system.scm (<operating-system>)[issue]: New field.
(%default-issue): New variable.
(etc-directory): Add #:issue parameter and honor it.
(operating-system-etc-directory): Adjust call accordingly.
* build-aux/hydra/demo-os.scm: Add 'issue' field.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r-- | build-aux/hydra/demo-os.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build-aux/hydra/demo-os.scm b/build-aux/hydra/demo-os.scm index 863371291e..30601556ac 100644 --- a/build-aux/hydra/demo-os.scm +++ b/build-aux/hydra/demo-os.scm @@ -41,6 +41,7 @@ (host-name "gnu") (timezone "Europe/Paris") (locale "en_US.UTF-8") + (bootloader (grub-configuration (device "/dev/sda"))) (file-systems @@ -52,6 +53,7 @@ (type "dummy")) ;; %fuse-control-file-system ; needs fuse.ko %binary-format-file-system)) + (users (list (user-account (name "guest") (group "wheel") @@ -67,6 +69,17 @@ (name "users") (id 100) (members '("guest"))))) + + (issue " +This is an alpha preview of the GNU system. Welcome. + +This image features the GNU Guix package manager, which was used to +build it (http://www.gnu.org/software/guix/). The init system is +GNU dmd (http://www.gnu.org/software/dmd/). + +You can log in as 'guest' or 'root' with no password. +") + (services (cons* (slim-service #:auto-login? #t #:default-user "guest") |