diff --git a/init.d/root.in b/init.d/root.in index 045bcd0f..32ecdcbb 100644 --- a/init.d/root.in +++ b/init.d/root.in @@ -48,14 +48,8 @@ start() ebegin "Remounting filesystems" local mountpoint for mountpoint in $(fstabinfo); do - case "${mountpoint}" in - /) - ;; - /*) - mountinfo -q "${mountpoint}" && \ - fstabinfo --remount "${mountpoint}" - ;; - esac + mountinfo -q "${mountpoint}" && \ + fstabinfo --remount "${mountpoint}" done eend 0 }