diff options
author | Daniel Baumann <daniel@debian.org> | 2008-07-15 10:40:55 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:48:00 +0100 |
commit | 883234b7943f93dc33ee5f237c9183973a5090f4 (patch) | |
tree | 3d282c475fe3b0d91cb5eda5ccbe0e428e91b075 /hooks | |
parent | c360fb1bfc43241d41bba88795c48d1fc49c1efe (diff) | |
download | live-boot-883234b7943f93dc33ee5f237c9183973a5090f4.tar.gz live-boot-883234b7943f93dc33ee5f237c9183973a5090f4.zip |
Correcting httpfs2 inclusion in hook.
Diffstat (limited to 'hooks')
-rwxr-xr-x | hooks/live | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -139,15 +139,13 @@ fi # FUSE kernel module manual_add_modules fuse -# FUSE filesystem: httpfs -if [ -x /usr/bin/httpfs_ssl ] +# FUSE filesystem: httpfs2 +if [ -x /usr/bin/httpfs2_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 +elif [ -x /usr/bin/httpfs2 ] +then + copy_exec /usr/bin/httpfs2 /bin/httpfs fi # FUSE filesystem: curlftpfs @@ -155,4 +153,3 @@ if [ -x /usr/bin/curlftpfs ] then copy_exec /usr/bin/curlftpfs /bin fi - |