summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2012-06-16 13:47:53 +0000
committerIgor Pashev <pashev.igor@gmail.com>2012-06-16 13:47:53 +0000
commit443446261ea2d2c4f2687263bba215ea8577eb83 (patch)
tree1f5aa30f9a04b24b2200be3bc8003b699a3af08c
parentc9c9207a3e73a2ce67c3b3c59505675fadc76628 (diff)
downloadlive-443446261ea2d2c4f2687263bba215ea8577eb83.tar.gz
Welcome dialog
-rwxr-xr-xsetup17
1 files changed, 17 insertions, 0 deletions
diff --git a/setup b/setup
index 8e53bbd..e258bdc 100755
--- a/setup
+++ b/setup
@@ -39,6 +39,23 @@ def choose_hdd():
''')
break
+def welcome():
+ rc = d.yesno(width=60, height=20, title='Welcome to Dyson installer',
+ text='''
+Dyson is an operating system derived from Debian and based on Illumos core.\
+It uses Illumos unix kernel, illumos libc, ZFS file system and SMF to manage system startup.\
+To learn more visit http://osdyson.org
+
+This installer will guide you though disk paritioning, filesystem creation,\
+installation of base system and minimal configuration.
+
+Please note, this system IS VERY EXPERIMENTAL. You can LOOSE ALL YOUR DATA which this system can reach ;-)
+
+Whould you like to continue?''')
+ if rc:
+ sys.exit(1)
+
+welcome()
get_hdd()
choose_hdd()