From c46fd7ab05ae46de30ac7cebaf0db00f57b08218 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Mon, 22 Jul 2013 16:16:34 -0700 Subject: [PATCH] fix(sys-kernel/bootengine): remove recursive from all the things we don't need recursive mounts on any of this. remove it. --- ...ne-0.0.1-r12.ebuild => bootengine-0.0.1-r13.ebuild} | 0 .../sys-kernel/bootengine/bootengine-0.0.1.ebuild | 10 +++++----- 2 files changed, 5 insertions(+), 5 deletions(-) rename sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/{bootengine-0.0.1-r12.ebuild => bootengine-0.0.1-r13.ebuild} (100%) diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1-r12.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1-r13.ebuild similarity index 100% rename from sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1-r12.ebuild rename to sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1-r13.ebuild diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1.ebuild index 3e8f60192b..b27342d7e6 100644 --- a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1.ebuild @@ -32,18 +32,18 @@ src_install() { pkg_postinst() { mount -t proc proc ${ROOT}/proc || die mount --bind /dev ${ROOT}/dev || die - mount --rbind /sys ${ROOT}/sys || die - mount --rbind /run ${ROOT}/run || die + mount --bind /sys ${ROOT}/sys || die + mount --bind /run ${ROOT}/run || die # The keyboard tables are all still being included, which we need to # figure out how to remove someday. chroot ${ROOT} dracut --force --no-kernel --nofscks \ --fstab --no-compress /tmp/bootengine.cpio || die - umount --recursive ${ROOT}/proc || die + umount ${ROOT}/proc || die umount ${ROOT}/dev || die - umount --recursive ${ROOT}/sys || die - umount --recursive ${ROOT}/run || die + umount ${ROOT}/sys || die + umount ${ROOT}/run || die # as we are not in src_install() insinto and doins do not work here, so # manually copy the file around