/sbin/umount -> /bin/umount (#696164)
---
loader/linuxrc.s390 | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/loader/linuxrc.s390 b/loader/linuxrc.s390
index 3280498..7a431b7 100644
--- a/loader/linuxrc.s390
+++ b/loader/linuxrc.s390
@@ -106,7 +106,7 @@ function checkipv4()
function doshutdown()
{
echo $"about to exec shutdown"
- /sbin/umount -a -d -n >/dev/null 2>&1
+ /bin/umount -a -d -n >/dev/null 2>&1
exec /sbin/shutdown
exit 0
}
@@ -124,7 +124,7 @@ function doreboot()
fi
echo $"about to exec shutdown -r"
- /sbin/umount -a -d -n >/dev/null 2>&1
+ /bin/umount -a -d -n >/dev/null 2>&1
exec /sbin/shutdown -r
exit 0
}
--
1.7.1
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|