mirror of
https://github.com/ceph/go-ceph
synced 2024-12-14 10:25:45 +00:00
29c88f4b2d
The Init functions initializes the connection without mounting the fs. This function must be called before setting the perms but before creating the mount. SetMountPerms accepts a UserPerm object to set the fs ownership info on the mount. The corresponding tests verifies that the UserPerm can be applied and it effects the gid of newly created dirs for that mount. Signed-off-by: John Mulligan <jmulligan@redhat.com>
23 lines
631 B
Go
23 lines
631 B
Go
// +build !luminous
|
|
//
|
|
// ceph_mount_perms_set available in mimic & later
|
|
|
|
package cephfs
|
|
|
|
/*
|
|
#cgo LDFLAGS: -lcephfs
|
|
#cgo CPPFLAGS: -D_FILE_OFFSET_BITS=64
|
|
#include <cephfs/libcephfs.h>
|
|
*/
|
|
import "C"
|
|
|
|
// SetMountPerms applies the given UserPerm to the mount object, which it will
|
|
// then use to define the connection's ownership credentials.
|
|
// This function must be called after Init but before Mount.
|
|
//
|
|
// Implements:
|
|
// int ceph_mount_perms_set(struct ceph_mount_info *cmount, UserPerm *perm);
|
|
func (mount *MountInfo) SetMountPerms(perm *UserPerm) error {
|
|
return getError(C.ceph_mount_perms_set(mount.mount, perm.userPerm))
|
|
}
|