home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / ubiquity / summary < prev    next >
Encoding:
Text File  |  2006-04-21  |  486 b   |  21 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4. . /usr/share/debconf/confmodule
  5.  
  6. db_get languagechooser/language-name
  7. db_subst ubiquity/summary LANGUAGE "$RET"
  8. db_get debian-installer/keymap
  9. db_subst ubiquity/summary KEYMAP "$RET"
  10. db_get passwd/user-fullname
  11. db_subst ubiquity/summary FULLNAME "$RET"
  12. db_get passwd/username
  13. db_subst ubiquity/summary USERNAME "$RET"
  14. db_get time/zone # actually continent/city (usually)
  15. db_subst ubiquity/summary LOCATION "$RET"
  16.  
  17. db_input high ubiquity/summary || true
  18. db_go
  19.  
  20. exit 0
  21.