diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-12-09 01:00:07 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-12-09 01:00:07 (EST) |
commit | bca2b93da9a35898ed17b52bfc96c5e147fc5f32 (patch) | |
tree | 70b6bbbf6090360e3f852f96f7130a743a2101a8 | |
parent | 54e4cc220a129316ce7563c6ef0b2f30b91c2ed7 (diff) |
Unmount file systems
-rw-r--r-- | debeagle.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debeagle.sh b/debeagle.sh index 14567d7..694c49c 100644 --- a/debeagle.sh +++ b/debeagle.sh @@ -254,6 +254,11 @@ install_debian() optargs="consoleblank=0" console="tty0 console=ttyS2,115200n8" EOF + + umount "${boot_mp}" + umount "${root_mp}" + rmdir "${boot_mp}" + rmdir "${root_mp}" } main "${@}" |