releasing version 0.76

This commit is contained in:
Kees Cook 2009-08-30 10:50:49 -07:00
parent e81c4a1ae7
commit eb94bb8f7e
2 changed files with 4 additions and 6 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
ubuntu-dev-tools (0.76) UNRELEASED; urgency=low
ubuntu-dev-tools (0.76) karmic; urgency=low
[ Nicolas Valcárcel ]
* mk-sbuild-lv:

View File

@ -40,12 +40,10 @@ fi
if [ ! -w /var/lib/sbuild ]; then
# Load all the packages you'll need to do work
sudo apt-get install sbuild schroot debootstrap lvm2
# Make sure dm_snapshot is not built-in into the kernel
sudo bash -c "dmsetup targets | grep ^snapshot > /dev/null || BUILTIN=False"
if [ "$BUILTIN" = "False" ]; then
# Make sure LVM tools that operate on the snapshots have needed module
# Make sure LVM tools that operate on the snapshots have needed module
if ! sudo dmsetup targets | grep -q ^snapshot; then
sudo modprobe dm_snapshot
sudo bash -c "grep ^dm_snapshot /etc/modules >/dev/null || echo dm_snapshot >> /etc/modules"
echo dm_snapshot | sudo tee -a /etc/modules >/dev/null
fi
# Add self to the sbuild group
sudo adduser "$USER" sbuild