28 lines
383 B
Plaintext
28 lines
383 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
PREREQ=""
|
||
|
DESCRIPTION="Moving mount points..."
|
||
|
|
||
|
. /scripts/casper-functions
|
||
|
|
||
|
prereqs()
|
||
|
{
|
||
|
echo "$PREREQ"
|
||
|
}
|
||
|
|
||
|
case $1 in
|
||
|
# get pre-requisites
|
||
|
prereqs)
|
||
|
prereqs
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
log_begin_msg "$DESCRIPTION"
|
||
|
|
||
|
# Move to the new root filesystem so that programs there can get at it.
|
||
|
mkdir -p /root/cdrom
|
||
|
mount -n -o move /cdrom /root/cdrom
|
||
|
|
||
|
log_end_msg
|