You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- # delete all temporary stuff
- . config || exit 0
-
- sudo umount ${FS}/dev/pts || true
- sudo umount ${FS}/sys/kernel/security || true
- sudo umount ${FS}/sys || true
- sudo umount ${FS}/proc || true
- sudo umount ${MNT} || true
- sudo rm --one-file-system -rf ${FS} ${ISO} ${MNT} ${DISK}
|