meta_release
| let meta_release = "# default location for the meta-release file
[METARELEASE]
URI = http://changelogs.ubuntu.com/meta-release
URI_LTS = http://changelogs.ubuntu.com/meta-release-lts
URI_UNSTABLE_POSTFIX = -development
URI_PROPOSED_POSTFIX = -proposed
" | 
Apt_Update_Manager.lns
| test Apt_Update_Manager.lns get meta_release =
  { "#comment" = "default location for the meta-release file" }
  {  }
  { "METARELEASE"
    { "URI" = "http://changelogs.ubuntu.com/meta-release" }
    { "URI_LTS" = "http://changelogs.ubuntu.com/meta-release-lts" }
    { "URI_UNSTABLE_POSTFIX" = "-development" }
    { "URI_PROPOSED_POSTFIX" = "-proposed" }
  } | 
release_upgrades
| let release_upgrades = "# Default behavior for the release upgrader.
[DEFAULT]
Prompt=lts
" | 
Apt_Update_Manager.lns
| test Apt_Update_Manager.lns get release_upgrades =
  { "#comment" = "Default behavior for the release upgrader." }
  {  }
  { "DEFAULT"
    { "Prompt" = "lts" }
  } |