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.master
parent
b51bde71a9
commit
b4658c258e
|
@ -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)
|
||||
|
|
|
@ -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)))
|
|
@ -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 \
|
||||
|
|
|
@ -11,6 +11,7 @@ guix/import/opam.scm
|
|||
gnu/installer.scm
|
||||
gnu/installer/record.scm
|
||||
gnu/installer/connman.scm
|
||||
gnu/installer/hostname.scm
|
||||
gnu/installer/keymap.scm
|
||||
gnu/installer/locale.scm
|
||||
gnu/installer/newt.scm
|
||||
|
|
Reference in New Issue