aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeblu <seblu@seblu.net>2011-03-04 02:35:36 +0100
committerSeblu <seblu@seblu.net>2011-03-16 16:59:55 +0100
commitb77f6400bd105dae85ed4b9bcb57776855e881a5 (patch)
tree96d29d015958293186a947b1ec1981c920e4c001
parentd134d8a651682dc80367c9572681497acd4c99d9 (diff)
downloadinitscripts-b77f6400bd105dae85ed4b9bcb57776855e881a5.tar.xz
Add davfs to the list of network filesystems in netfs
Close FS#19952 Signed-off-by: Seblu <seblu@seblu.net>
-rwxr-xr-xnetfs4
-rwxr-xr-xrc.sysinit2
2 files changed, 3 insertions, 3 deletions
diff --git a/netfs b/netfs
index d4a926f..2bcec6c 100755
--- a/netfs
+++ b/netfs
@@ -9,7 +9,7 @@ rc=0
case "$1" in
start)
stat_busy "Mounting Network Filesystems"
- /bin/mount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,glusterfs,fuse,fuseblk,fuse.glusterfs
+ /bin/mount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,glusterfs,fuse,fuseblk,fuse.glusterfs,davfs
rc=$?
/bin/mount -a -O _netdev
if ((rc + $? > 0)); then
@@ -23,7 +23,7 @@ case "$1" in
stat_busy "Unmounting Network Filesystems"
/bin/umount -a -O _netdev
rc=$?
- /bin/umount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,glusterfs,fuse,fuseblk,fuse.glusterfs
+ /bin/umount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,glusterfs,fuse,fuseblk,fuse.glusterfs,davfs
if ((rc + $? > 0)); then
stat_fail
else
diff --git a/rc.sysinit b/rc.sysinit
index 5d94de8..4f97c24 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -223,7 +223,7 @@ status "Mounting Root Read-only" /bin/mount -n -o remount,ro /
FORCEFSCK=
[[ -f /forcefsck || -n "$forcefsck" ]] && FORCEFSCK="-- -f"
-NETFS="nonfs,nonfs4,nosmbfs,nocifs,nocodafs,noncpfs,nosysfs,noshfs,nofuse,nofuseblk,noglusterfs"
+NETFS="nonfs,nonfs4,nosmbfs,nocifs,nocodafs,noncpfs,nosysfs,noshfs,nofuse,nofuseblk,noglusterfs,nodavfs"
fsck_reboot() {
echo "Automatic reboot in progress..."