aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-installer/initrdscripts/files/umountfs
blob: f01adea43a9929ef0d904b0227f4d451cf258a7b (plain)
1
2
3
4
5
6
7
8
9
10
umountfs_enabled() {
    return 0
}

umountfs_run() {
    # Umount other media for anaconda
    for dir in `awk '/\/dev.* \/run\/media/{print $2}' /proc/mounts`; do
        umount $dir
    done
}