summaryrefslogtreecommitdiff
path: root/hooks
diff options
context:
space:
mode:
authorMichal Suchanek <hramrach@centrum.cz>2008-06-09 17:29:01 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:48:00 +0100
commiteedba054799e9809e7178938e372ece8c58d15c9 (patch)
tree0c4ae6cdacdf5b755715a8f4a36413f96b2d9d6e /hooks
parent478ce068a690a986456b8d8159e9c3937c364868 (diff)
downloadlive-boot-eedba054799e9809e7178938e372ece8c58d15c9.tar.gz
live-boot-eedba054799e9809e7178938e372ece8c58d15c9.zip
Add support for httpfs= and ftpfs= parameters.
Diffstat (limited to 'hooks')
-rwxr-xr-xhooks/live21
1 files changed, 21 insertions, 0 deletions
diff --git a/hooks/live b/hooks/live
index b85f646..56425ad 100755
--- a/hooks/live
+++ b/hooks/live
@@ -135,3 +135,24 @@ if [ -x /usr/bin/wget ]
then
copy_exec /usr/bin/wget /bin
fi
+
+# FUSE kernel module
+manual_add_modules fuse
+
+# FUSE filesystem: httpfs
+if [ -x /usr/bin/httpfs_ssl ]
+then
+ copy_exec /usr/bin/httpfs2_ssl /bin/httpfs
+else
+ if [ -x /usr/bin/httpfs ]
+ then
+ copy_exec /usr/bin/httpfs2 /bin/httpfs
+ fi
+fi
+
+# FUSE filesystem: curlftpfs
+if [ -x /usr/bin/curlftpfs ]
+then
+ copy_exec /usr/bin/curlftpfs /bin
+fi
+