diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-06-16 13:47:53 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-06-16 13:47:53 +0000 |
commit | 443446261ea2d2c4f2687263bba215ea8577eb83 (patch) | |
tree | 1f5aa30f9a04b24b2200be3bc8003b699a3af08c | |
parent | c9c9207a3e73a2ce67c3b3c59505675fadc76628 (diff) | |
download | live-443446261ea2d2c4f2687263bba215ea8577eb83.tar.gz |
Welcome dialog
-rwxr-xr-x | setup | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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() |