Translations:32-bit Chroot/33/es

From Funtoo
Revision as of 08:18, April 13, 2020 by Ventgrey (talk | contribs) (Created page with "stop() { ebegin "Unmounting 32-bit chroot directories" umount -fR "${chroot_dir}/dev" >/dev/null umount -fR "${chroot_dir}/sys" >/dev/null umount -f "${chroot_...")
(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"

}