Difference between revisions of "Translations:32-bit Chroot/33/es"

From Funtoo
Jump to navigation Jump to search
(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_...")
 
(No difference)

Latest revision as of 08:18, April 13, 2020

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (32-bit Chroot)
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"
}

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"

}