diff options
| author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:46:22 +0200 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:46:22 +0200 |
| commit | 4a0b1ba4d428c623d14bae7f0db85c80abb0da0a (patch) | |
| tree | de03aceffba0ce13f098d970cc89f806db7af5d7 /scripts/casper-bottom/12fstab | |
| download | live-boot-4a0b1ba4d428c623d14bae7f0db85c80abb0da0a.tar.gz live-boot-4a0b1ba4d428c623d14bae7f0db85c80abb0da0a.zip | |
Adding casper 1.59+debian-1.
Diffstat (limited to 'scripts/casper-bottom/12fstab')
| -rwxr-xr-x | scripts/casper-bottom/12fstab | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/scripts/casper-bottom/12fstab b/scripts/casper-bottom/12fstab new file mode 100755 index 0000000..00e5c50 --- /dev/null +++ b/scripts/casper-bottom/12fstab @@ -0,0 +1,31 @@ +#!/bin/sh + +PREREQ="" +DESCRIPTION="Configuring fstab..." +FSTAB=/root/etc/fstab + +. /scripts/functions + +prereqs() +{ + echo "$PREREQ" +} + +case $1 in +# get pre-requisites +prereqs) + prereqs + exit 0 + ;; +esac + +log_begin_msg "$DESCRIPTION" + +cat > $FSTAB <<EOF +unionfs / unionfs rw 0 0 +tmpfs /tmp tmpfs nosuid,nodev 0 0 +EOF + +rm -f /root/etc/rcS.d/S10checkroot.sh + +log_end_msg |
