mk-sbuild-lv: switch to ext4 by default.

This commit is contained in:
Kees Cook 2009-11-10 17:17:20 -08:00
parent 1973bde3e0
commit a32b4c0e43
2 changed files with 6 additions and 2 deletions

6
debian/changelog vendored
View File

@ -1,5 +1,6 @@
ubuntu-dev-tools (0.83) UNRELEASED; urgency=low ubuntu-dev-tools (0.83) UNRELEASED; urgency=low
[ Iain Lane ]
* lpapicache: Do not immediately bail out if we have no credentials to * lpapicache: Do not immediately bail out if we have no credentials to
login. Clients are now expected to handle the lack of credentials login. Clients are now expected to handle the lack of credentials
themselves. themselves.
@ -11,7 +12,10 @@ ubuntu-dev-tools (0.83) UNRELEASED; urgency=low
Detect & bail if we don't have credentials and need them. These scripts Detect & bail if we don't have credentials and need them. These scripts
cannot continue under those circumstances. cannot continue under those circumstances.
-- Iain Lane <laney@ubuntu.com> Sat, 07 Nov 2009 19:34:25 +0000 [ Kees Cook ]
* mk-sbuild-lv: switch to ext4 by default.
-- Kees Cook <kees@ubuntu.com> Tue, 10 Nov 2009 17:16:56 -0800
ubuntu-dev-tools (0.82) lucid; urgency=low ubuntu-dev-tools (0.82) lucid; urgency=low

View File

@ -277,7 +277,7 @@ esac
# Allocate the "golden" chroot LV # Allocate the "golden" chroot LV
sudo lvcreate -n "$CHROOT_LV" -L "$LV_SIZE" "$VG" sudo lvcreate -n "$CHROOT_LV" -L "$LV_SIZE" "$VG"
sudo mkfs -t ext3 "$CHROOT_PATH" sudo mkfs -t ext4 "$CHROOT_PATH"
# Mount and debootstrap the chroot # Mount and debootstrap the chroot
MNT=`mktemp -d -t schroot-XXXXXX` MNT=`mktemp -d -t schroot-XXXXXX`