[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/197: installer: Add alternate method of finding TZDIR.
From: |
Danny Milosavljevic |
Subject: |
13/197: installer: Add alternate method of finding TZDIR. |
Date: |
Mon, 3 Jul 2017 20:36:52 -0400 (EDT) |
dannym pushed a commit to branch wip-installer-2
in repository guix.
commit 5cc798981a30d5f4f43c897acb36fd91a112eb40
Author: John Darrington <address@hidden>
Date: Wed Dec 21 20:28:02 2016 +0100
installer: Add alternate method of finding TZDIR.
* gnu/system/installer/new.scm (main-options): Provide alternative method
of finding
the timezone directory.
---
gnu/system/installer/new.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/system/installer/new.scm b/gnu/system/installer/new.scm
index 9b18251..5646dfb 100644
--- a/gnu/system/installer/new.scm
+++ b/gnu/system/installer/new.scm
@@ -88,7 +88,10 @@
(lambda (page)
(make-tz-browser
page
- (getenv "TZDIR")
+ (or
+ (getenv "TZDIR")
+ (string-append (car (slurp "guix build tzdata" #f))
+ "/share/zoneinfo"))
page-stack))))
(hostname . ,(make-task hostname-menu-title
@@ -101,7 +104,7 @@
(generate . ,(make-task
(N_ "Generate the configuration")
- '(filesystems hostname timezone)
+ '(filesystems timezone hostname)
(lambda () #f)
(lambda (page)
(make-dialog
- 02/197: installer: Fix broken keymap change option., (continued)
- 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, 2017/07/03
- 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 <=
- 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
- 25/197: installer: Connect ethernet interfaces on selection., Danny Milosavljevic, 2017/07/03
- 03/197: installer: Remove obsolete procedures/variables, Danny Milosavljevic, 2017/07/03
- 10/197: installer: Perform a task's dependencies prior to the task itself., Danny Milosavljevic, 2017/07/03
- 22/197: installer: Make "interfaces" return an alist., Danny Milosavljevic, 2017/07/03
- 26/197: installer: Let the kernel know about (possibly) changed partitions., Danny Milosavljevic, 2017/07/03