diff options
Diffstat (limited to 'zarb-ml/mageia-dev/attachments/20121230/8de0fa69/attachment.sh')
-rw-r--r-- | zarb-ml/mageia-dev/attachments/20121230/8de0fa69/attachment.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/attachments/20121230/8de0fa69/attachment.sh b/zarb-ml/mageia-dev/attachments/20121230/8de0fa69/attachment.sh new file mode 100644 index 000000000..746a76804 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20121230/8de0fa69/attachment.sh @@ -0,0 +1,15 @@ +#!/bin/bash +if [[ "$1" == "start" ]]; then + cp -f /etc/resolv.conf /mnt/chroot/cauldron/etc/ + mount -o bind /proc /mnt/chroot/cauldron/proc + mount -o bind /dev /mnt/chroot/cauldron/dev + mount /mnt/chroot/cauldron/dev/pts + mount -o bind /sys /mnt/chroot/cauldron/sys +fi + +if [[ "$1" == "stop" ]]; then + umount /mnt/chroot/cauldron/proc + umount /mnt/chroot/cauldron/dev/pts + umount /mnt/chroot/cauldron/sys + umount /mnt/chroot/cauldron/dev +fi
\ No newline at end of file |