[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/197: installer: Change "interfaces" from a variable to a procedure.
From: |
Danny Milosavljevic |
Subject: |
11/197: installer: Change "interfaces" from a variable to a procedure. |
Date: |
Mon, 3 Jul 2017 20:36:51 -0400 (EDT) |
dannym pushed a commit to branch wip-installer-2
in repository guix.
commit f53cf9a83a7d61a874dbab114990d0b65373a571
Author: John Darrington <address@hidden>
Date: Wed Dec 21 09:05:51 2016 +0100
installer: Change "interfaces" from a variable to a procedure.
* gnu/system/installer/network.scm (interfaces): Delete variable,
(interfaces): New procedure.
---
gnu/system/installer/network.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/system/installer/network.scm b/gnu/system/installer/network.scm
index 1aa193b..d638562 100644
--- a/gnu/system/installer/network.scm
+++ b/gnu/system/installer/network.scm
@@ -36,7 +36,7 @@
network-page-key-handler))
-(define interfaces (delete "lo"
+(define (interfaces) (delete "lo"
(slurp "ip -o link"
(lambda (s)
(match (string-split s #\:)
@@ -133,7 +133,7 @@
(getmaxy text-window) 0 #:panel #f))
(menu (make-menu
- interfaces
+ (interfaces)
#:disp-proc
(lambda (datum row)
;; Convert a network device name such as "enp0s25" to
- branch wip-installer-2 created (now ff63588), Danny Milosavljevic, 2017/07/03
- 04/197: installer: Fix broken timezone menu., Danny Milosavljevic, 2017/07/03
- 05/197: installer: fix warning in usage of "format"., Danny Milosavljevic, 2017/07/03
- 02/197: installer: Fix broken keymap change option., Danny Milosavljevic, 2017/07/03
- 07/197: installer: Use ice-9 match., Danny Milosavljevic, 2017/07/03
- 12/197: installer: Use call-with-temporary-output-file., Danny Milosavljevic, 2017/07/03
- 08/197: installer: Add IETF contraints for hostname in entry form., Danny Milosavljevic, 2017/07/03
- 06/197: installer: use ice-9 format everywhere., Danny Milosavljevic, 2017/07/03
- 11/197: installer: Change "interfaces" from a variable to a procedure.,
Danny Milosavljevic <=
- 16/197: installer: Add new procedure to get the list of volumes., Danny Milosavljevic, 2017/07/03
- 15/197: installer: Use %default-subsitute-urls instead of our own variable., Danny Milosavljevic, 2017/07/03
- 19/197: installer: Remove unused procedure., Danny Milosavljevic, 2017/07/03
- 18/197: installer: Handle the 'back' action in the filesystems task., Danny Milosavljevic, 2017/07/03
- 13/197: installer: Add alternate method of finding TZDIR., Danny Milosavljevic, 2017/07/03
- 31/197: installer: Make minumum-store-size variable global., Danny Milosavljevic, 2017/07/03
- 33/197: installer: Improve dependencies on the final task., Danny Milosavljevic, 2017/07/03
- 17/197: installer: Add completion predicate for disk task., Danny Milosavljevic, 2017/07/03
- 21/197: installer: Fix incorrect host in ping task., Danny Milosavljevic, 2017/07/03
- 20/197: installer: Return slurped lines in their correct order., Danny Milosavljevic, 2017/07/03