diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-12-05 14:45:53 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-17 14:04:23 +0100 |
commit | b4658c258eaf7731dbb45409aedef58afc5de93a (patch) | |
tree | 0489f638052b9400dc0c5e7f41f5f29ea713499e /gnu | |
parent | b51bde71a9385f4e81fbea258bfb9e8ff48be119 (diff) | |
download | patches-b4658c258eaf7731dbb45409aedef58afc5de93a.tar patches-b4658c258eaf7731dbb45409aedef58afc5de93a.tar.gz |
installer: Add hostname.
* gnu/installer/hostname.scm: New file.
* gnu/installer.scm (installer-program): Use new module above.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add new file.
* po/guix/POTFILES.in: Add new file.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/installer.scm | 1 | ||||
-rw-r--r-- | gnu/installer/hostname.scm | 23 | ||||
-rw-r--r-- | gnu/local.mk | 1 |
3 files changed, 25 insertions, 0 deletions
diff --git a/gnu/installer.scm b/gnu/installer.scm index 1b9aeaa217..7e023ce18f 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -278,6 +278,7 @@ selected keymap." (gnu installer keymap) (gnu installer steps) (gnu installer final) + (gnu installer hostname) (gnu installer locale) (gnu installer parted) (gnu installer services) diff --git a/gnu/installer/hostname.scm b/gnu/installer/hostname.scm new file mode 100644 index 0000000000..b8e823d0a8 --- /dev/null +++ b/gnu/installer/hostname.scm @@ -0,0 +1,23 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com> +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. + +(define-module (gnu installer hostname) + #:export (hostname->configuration)) + +(define (hostname->configuration hostname) + `((host-name ,hostname))) diff --git a/gnu/local.mk b/gnu/local.mk index 15a43406a4..bcb5e5f679 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -570,6 +570,7 @@ GNU_SYSTEM_MODULES += \ %D%/installer/record.scm \ %D%/installer/connman.scm \ %D%/installer/final.scm \ + %D%/installer/hostname.scm \ %D%/installer/keymap.scm \ %D%/installer/locale.scm \ %D%/installer/newt.scm \ |