diff options
author | William Hubbs <williamh@gentoo.org> | 2021-05-11 17:24:33 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2021-05-12 15:11:15 -0500 |
commit | 5e594b78a696a6d00b5f75ffd0d40d7a8a80f348 (patch) | |
tree | 4ae5bf816707dc12c5111ec4d48ae171e40af724 /sys-apps/baselayout | |
parent | dev-perl/CSS-Minifier-XS: Version bump 0.13 (diff) | |
download | gentoo-5e594b78a696a6d00b5f75ffd0d40d7a8a80f348.tar.gz gentoo-5e594b78a696a6d00b5f75ffd0d40d7a8a80f348.tar.bz2 gentoo-5e594b78a696a6d00b5f75ffd0d40d7a8a80f348.zip |
sys-apps/baselayout: remove old /run setup
This was needed to create /run on live systems.
There have been several baselayout versions since /run was created, so
it should be safe to remove it.
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'sys-apps/baselayout')
-rw-r--r-- | sys-apps/baselayout/baselayout-9999.ebuild | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sys-apps/baselayout/baselayout-9999.ebuild b/sys-apps/baselayout/baselayout-9999.ebuild index a37d17f3b8d1..9f4a53a1c184 100644 --- a/sys-apps/baselayout/baselayout-9999.ebuild +++ b/sys-apps/baselayout/baselayout-9999.ebuild @@ -282,18 +282,6 @@ pkg_postinst() { fi fi - # https://bugs.gentoo.org/361349 - if use kernel_linux; then - mkdir -p "${EROOT}"/run || die - - local found fstype mountpoint - while read -r _ mountpoint fstype _; do - [[ ${mountpoint} = /run ]] && [[ ${fstype} = tmpfs ]] && found=1 - done < "${ROOT}"/proc/mounts - [[ -z ${found} ]] && - ewarn "You should reboot now to get /run mounted with tmpfs!" - fi - for x in ${REPLACING_VERSIONS}; do if ver_test 2.4 -lt ${x}; then ewarn "After updating ${EROOT}/etc/profile, please run" |