diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-04-26 21:21:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-04-26 21:21:13 +0000 |
commit | 2ea65187c3a8c7cfbfabdf522738e51739427fb8 (patch) | |
tree | 856cbdf7fa1bebeb58f185e221d4d0e79f801a0c /distrib | |
parent | dfdce87727e931424be40a5530617d71f17cbbcc (diff) |
No need to say that we setup the timezone; the user can assume it happens because we move on to the next task
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index aa3d116a8cb..000893c7915 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.488 2009/04/26 21:20:27 deraadt Exp $ +# $OpenBSD: install.sub,v 1.489 2009/04/26 21:21:12 deraadt Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback @@ -1322,9 +1322,7 @@ set_timezone() { if [[ -f $_zonepath ]]; then TZ=${_zonepath#$_zoneroot} - echo -n "Setting local timezone to '$TZ'..." ln -sf /usr/share/zoneinfo/$TZ /mnt/etc/localtime - echo "done." return fi |