aboutsummaryrefslogtreecommitdiff
path: root/examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh
blob: e4749c03df5a7642e0248ebd411c2854df20af67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# work around initscripts postinst which mounts /sys with cdebootstrap.
# Bug: #350262

set +e

umount /sys
umount /run
umount /proc/bus/usb
umount /dev/shm

exit 0;