5 lines
74 B
Bash
5 lines
74 B
Bash
|
#!/bin/sh
|
||
|
if [ -d "${CHROOT_DIR}" ]; then
|
||
|
umount "${CHROOT_DIR}/proc"
|
||
|
fi
|