~didrocks/ubiquity/intall-metrics

« back to all changes in this revision

Viewing changes to scripts/summary

  • Committer: Colin Watson
  • Date: 2006-04-21 11:39:15 UTC
  • Revision ID: colin.watson@canonical.com-20060421113915-7d2d711cd6afc4f5
* Rename from espresso to ubiquity, to better suggest an association with
  Ubuntu. Log output now written to /var/log/installer/syslog rather than
  using the package name.

Show diffs side-by-side

added added

removed removed

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