blob: e2e4b946db4048cc5095aace1fac0007c53a5fbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# example file to be used with --hookdir
#
# work around initscripts postinst which mounts /sys with cdebootstrap.
# Bug: #350262
set +e
umount /sys
umount /proc/bus/usb
umount /dev/shm
umount /proc
umount /dev/pts
exit 0;
|