This commit is contained in:
j3d1 2020-01-31 10:50:59 +01:00
parent 46015ce4af
commit 56d175ab07

View file

@ -88,3 +88,9 @@ function second_stage(){
} }
function post_install_stage(){
sleep 0.5
mount | grep target | awk '{print $3}'| sort -r | while read LINE; do
umount -l $LINE;
done
}