diff -ru schroot-1.1.5/bin/schroot/setup/05lvm schroot-1.1.5.centos/bin/schroot/setup/05lvm --- schroot-1.1.5/bin/schroot/setup/05lvm 2007-07-07 23:11:19.000000000 +0200 +++ schroot-1.1.5.centos/bin/schroot/setup/05lvm 2007-09-11 11:31:09.000000000 +0200 @@ -31,10 +31,10 @@ if [ $1 = "setup-start" ]; then if [ "$AUTH_VERBOSITY" = "verbose" ]; then - lvcreate $VERBOSE $CHROOT_LVM_SNAPSHOT_OPTIONS --snapshot \ + /usr/sbin/lvcreate $VERBOSE $CHROOT_LVM_SNAPSHOT_OPTIONS --snapshot \ --name "$CHROOT_LVM_SNAPSHOT_NAME" "$CHROOT_DEVICE" else - lvcreate $VERBOSE $CHROOT_LVM_SNAPSHOT_OPTIONS --snapshot \ + /usr/sbin/lvcreate $VERBOSE $CHROOT_LVM_SNAPSHOT_OPTIONS --snapshot \ --name "$CHROOT_LVM_SNAPSHOT_NAME" "$CHROOT_DEVICE" > /dev/null fi @@ -51,9 +51,9 @@ --pid=$PID || true if [ "$AUTH_VERBOSITY" = "verbose" ]; then - lvremove $VERBOSE -f "$CHROOT_LVM_SNAPSHOT_DEVICE" || true + /usr/sbin/lvremove $VERBOSE -f "$CHROOT_LVM_SNAPSHOT_DEVICE" || true else - lvremove $VERBOSE -f "$CHROOT_LVM_SNAPSHOT_DEVICE" > /dev/null || true + /usr/sbin/lvremove $VERBOSE -f "$CHROOT_LVM_SNAPSHOT_DEVICE" > /dev/null || true fi fi