summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Bilyk <jbilyk@gmail.com>2011-02-27 14:51:55 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2011-02-27 15:03:49 -0600
commit34f522070a0b0e0460ecc02207aa7cc94d0becc6 (patch)
treefcab6094f0b46abdc5874932f5a331ae69def478
parent8a330b843f257e0694c291785e447371a59ff314 (diff)
downloadalpine-conf-34f522070a0b0e0460ecc02207aa7cc94d0becc6.tar.bz2
alpine-conf-34f522070a0b0e0460ecc02207aa7cc94d0becc6.tar.xz
setup-alpine: fix typo when calling setup-timezone
fix typo when calling setup-timezone
-rw-r--r--setup-alpine.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-alpine.in b/setup-alpine.in
index aeda76a..aeab41a 100644
--- a/setup-alpine.in
+++ b/setup-alpine.in
@@ -77,6 +77,6 @@ fi
printf "Change timezone (default is UTC)? [y/N]?"
default_read setuptz "n"
-if [ $setuptz == "Y" ] || [ $setuprtz == "y" ]; then
+if [ $setuptz == "Y" ] || [ $setuptz == "y" ]; then
$PREFIX/sbin/setup-timezone
fi