X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/08123387faf00b0af64ea01f7196d8c5ca3fae1e..HEAD:/services/fuse/fpm-info.sh diff --git a/services/fuse/fpm-info.sh b/services/fuse/fpm-info.sh index fd94ef7afa..8ede312d86 100644 --- a/services/fuse/fpm-info.sh +++ b/services/fuse/fpm-info.sh @@ -2,13 +2,19 @@ # # SPDX-License-Identifier: AGPL-3.0 +# We depend on the fuse package because arv-mount may run the `fusermount` tool. fpm_depends+=(fuse) case "$TARGET" in - centos*) + centos*|rocky*) + # We depend on libfuse for llfuse. + # We should declare a libcurl dependency, but it's a little academic + # because rpm itself depends on it, so we can be pretty sure it's installed. fpm_depends+=(fuse-libs) ;; debian* | ubuntu*) - fpm_depends+=(libcurl3-gnutls libpython2.7) + # We depend on libfuse2 for llfuse. + # We depend on libcurl because the Python SDK does for its Keep client. + fpm_depends+=(libfuse2 libcurl3-gnutls) ;; esac