Translations:32-bit Chroot/33/en

From Funtoo
Revision as of 07:52, April 13, 2020 by FuzzyBot (talk | contribs) (Importing a new version from external source)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

stop() {

   ebegin "Unmounting 32-bit chroot directories"
   umount -fR "${chroot_dir}/dev" >/dev/null
   umount -fR "${chroot_dir}/sys" >/dev/null
   umount -f "${chroot_dir}/proc" >/dev/null
   umount -f "${chroot_dir}/tmp" >/dev/null
   umount -f "${chroot_dir}/var/git/meta-repo/" >/dev/null
   umount -f "${chroot_dir}/var/cache/portage/distfiles/" >/dev/null
   umount -f "${chroot_dir}/run"
   eend $? "An error occured while attempting to unmount 32bit chroot directories"

}