diff options
author | Michal Suchanek <hramrach@centrum.cz> | 2008-06-09 17:29:01 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:48:00 +0100 |
commit | eedba054799e9809e7178938e372ece8c58d15c9 (patch) | |
tree | 0c4ae6cdacdf5b755715a8f4a36413f96b2d9d6e /hooks | |
parent | 478ce068a690a986456b8d8159e9c3937c364868 (diff) | |
download | live-boot-eedba054799e9809e7178938e372ece8c58d15c9.tar.gz live-boot-eedba054799e9809e7178938e372ece8c58d15c9.zip |
Add support for httpfs= and ftpfs= parameters.
Diffstat (limited to 'hooks')
-rwxr-xr-x | hooks/live | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -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 + |