guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

26/68: installer: Add hostname.


From: guix-commits
Subject: 26/68: installer: Add hostname.
Date: Thu, 17 Jan 2019 08:05:13 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit b4658c258eaf7731dbb45409aedef58afc5de93a
Author: Mathieu Othacehe <address@hidden>
Date:   Wed Dec 5 14:45:53 2018 +0900

    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.
---
 gnu/installer.scm          |  1 +
 gnu/installer/hostname.scm | 23 +++++++++++++++++++++++
 gnu/local.mk               |  1 +
 po/guix/POTFILES.in        |  1 +
 4 files changed, 26 insertions(+)

diff --git a/gnu/installer.scm b/gnu/installer.scm
index 1b9aeaa..7e023ce 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 0000000..b8e823d
--- /dev/null
+++ b/gnu/installer/hostname.scm
@@ -0,0 +1,23 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2018 Mathieu Othacehe <address@hidden>
+;;;
+;;; 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 15a4340..bcb5e5f 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                       \
diff --git a/po/guix/POTFILES.in b/po/guix/POTFILES.in
index 16d9c9e..df7459a 100644
--- a/po/guix/POTFILES.in
+++ b/po/guix/POTFILES.in
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]