mirror of
https://github.com/ceph/ceph
synced 2025-02-20 17:37:29 +00:00
mount.fuse.ceph: Fix ambiguous shebang
The ambiguous shebang now produces an error in rawhide and halts the build. In f29 this was a warning. Add python3 as a dependency for ceph-fuse. Fixes: http://tracker.ceph.com/issues/37787 Signed-off-by: Brad Hubbard <bhubbard@redhat.com>
This commit is contained in:
parent
b02f198fd8
commit
885a37ac02
@ -463,6 +463,7 @@ Summary: Ceph fuse-based client
|
||||
Group: System/Filesystems
|
||||
%endif
|
||||
Requires: fuse
|
||||
Requires: python%{python3_pkgversion}
|
||||
%description fuse
|
||||
FUSE based client for Ceph distributed network file system
|
||||
|
||||
|
1
debian/control
vendored
1
debian/control
vendored
@ -278,6 +278,7 @@ Package: ceph-fuse
|
||||
Architecture: linux-any
|
||||
Depends: ${misc:Depends},
|
||||
${shlibs:Depends},
|
||||
${python3:Depends},
|
||||
fuse,
|
||||
Description: FUSE-based client for the Ceph distributed file system
|
||||
Ceph is a massively scalable, open-source, distributed
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env python
|
||||
#!/usr/bin/python3
|
||||
'''
|
||||
Helper to mount ceph-fuse from /etc/fstab. To use, add an entry
|
||||
like:
|
||||
|
Loading…
Reference in New Issue
Block a user