diff options
author | Kim Hagen <kim.sidney@gmail.com> | 2018-11-12 10:07:52 +0100 |
---|---|---|
committer | Kim Hagen <kim.sidney@gmail.com> | 2018-11-12 10:07:52 +0100 |
commit | 8dcda0e05b0109e12280c446070b1fa94d0a6b4b (patch) | |
tree | 3229cfed4504037f0d141ec9a6625cdb8708880c /data/live-build-config/hooks/live/10-unmountfs.chroot | |
parent | a48a22a8113c0e98ed019c60b1f4c182550d3979 (diff) | |
download | vyos-build-8dcda0e05b0109e12280c446070b1fa94d0a6b4b.tar.gz vyos-build-8dcda0e05b0109e12280c446070b1fa94d0a6b4b.zip |
Add uefi to vyos-build
Diffstat (limited to 'data/live-build-config/hooks/live/10-unmountfs.chroot')
-rwxr-xr-x | data/live-build-config/hooks/live/10-unmountfs.chroot | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/data/live-build-config/hooks/live/10-unmountfs.chroot b/data/live-build-config/hooks/live/10-unmountfs.chroot new file mode 100755 index 00000000..7992a4d2 --- /dev/null +++ b/data/live-build-config/hooks/live/10-unmountfs.chroot @@ -0,0 +1,12 @@ +#!/bin/sh + +# hack umountfs script to cleanly unmount live systems + +sed \ + -e '/proc|procfs|linprocfs/ s/)/|squashfs|iso9660)/' \ + -e '/tmpfs)/ a\ + [ "$MTPT" != "/media" ] && \ + [ "$MTPT" != "/live" ] && \ + [ "$MTPT" != "/live/cow" ] && +' \ + -i /etc/init.d/umountfs |