diff options
| author | Daniel Baumann <daniel@debian.org> | 2010-05-01 14:30:04 +0200 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:48:09 +0100 |
| commit | 6b23d230e10c2ba5d06828748123f3bff8ba5685 (patch) | |
| tree | f18d3d8aaa4ff4f6ae675911cd7b26fa95f39630 | |
| parent | e692c692d0dc9249603d0cf9d4f10677a1ae0a9c (diff) | |
| download | live-boot-6b23d230e10c2ba5d06828748123f3bff8ba5685.tar.gz live-boot-6b23d230e10c2ba5d06828748123f3bff8ba5685.zip | |
Merging casper 1.234.
| -rw-r--r-- | docs/ChangeLog.casper | 7 | ||||
| -rwxr-xr-x | scripts/live-bottom/24preseed | 5 |
2 files changed, 11 insertions, 1 deletions
diff --git a/docs/ChangeLog.casper b/docs/ChangeLog.casper index 3b28500..41cb0e6 100644 --- a/docs/ChangeLog.casper +++ b/docs/ChangeLog.casper @@ -1,3 +1,10 @@ +casper (1.234) lucid; urgency=low + + * Only bring the network up while running preseed/early_command if + preseed/allow-network=true. + + -- Colin Watson <cjwatson@ubuntu.com> Wed, 14 Apr 2010 15:56:40 +0100 + casper (1.233) lucid; urgency=low * Bring the network up while running preseed/early_command. diff --git a/scripts/live-bottom/24preseed b/scripts/live-bottom/24preseed index fb980bd..68f97b9 100755 --- a/scripts/live-bottom/24preseed +++ b/scripts/live-bottom/24preseed @@ -58,7 +58,10 @@ fi if db_get preseed/early_command && [ "$RET" ] then - start_network + if db_get preseed/allow-network && [ "$RET" = true ]; then + start_network + fi + DEBIAN_HAS_FRONTEND= DEBCONF_REDIR= \ DEBIAN_FRONTEND=noninteractive \ sh -c "$RET" |
