diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-09-06 22:48:41 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-09-06 22:48:41 +0000 |
commit | 4f54dd23b8655ce6c30a62c419d62533431f3602 (patch) | |
tree | ed428cc21544aac99f5252b0ff27a7992ac918d5 | |
parent | d948c0d40c63a6a618ac606ecdb68d083c343ddd (diff) | |
download | pfsense-4f54dd23b8655ce6c30a62c419d62533431f3602.zip pfsense-4f54dd23b8655ce6c30a62c419d62533431f3602.tar.gz |
Add conf.default to the unionfs roster
-rwxr-xr-x | etc/rc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -91,6 +91,7 @@ if [ "$PLATFORM" = "cdrom" ] ; then mkdir /tmp/unionfs/sbin mkdir /tmp/unionfs/bin mkdir /tmp/unionfs/boot + mkdir /tmp/unionfs/confdefault echo -n "Mounting unionfs directories:" echo -n " usr" mount_unionfs /tmp/unionfs/usr /usr/ @@ -102,6 +103,8 @@ if [ "$PLATFORM" = "cdrom" ] ; then mount_unionfs /tmp/unionfs/sbin /sbin/ echo -n " boot" mount_unionfs /tmp/unionfs/boot /boot/ + echo -n " conf.default" + mount_unionfs /tmp/unionfs/confdefault /conf.default/ echo "... done." fi |