Skip to content

Commit

Permalink
nfs admin: add the admin type for nfs
Browse files Browse the repository at this point in the history
Signed-off-by: John Mulligan <jmulligan@redhat.com>
  • Loading branch information
phlogistonjohn authored and mergify[bot] committed Apr 6, 2022
1 parent 737dee7 commit 02da443
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions common/admin/nfs/admin.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
//go:build !(nautilus || octopus) && ceph_preview && ceph_ci_untested
// +build !nautilus,!octopus,ceph_preview,ceph_ci_untested

package nfs

import (
ccom "github.com/ceph/go-ceph/common/commands"
)

// Admin is used to administer ceph nfs features.
type Admin struct {
conn ccom.RadosCommander
}

// NewFromConn creates an new management object from a preexisting
// rados connection. The existing connection can be rados.Conn or any
// type implementing the RadosCommander interface.
// PREVIEW
func NewFromConn(conn ccom.RadosCommander) *Admin {
return &Admin{conn}
}

0 comments on commit 02da443

Please sign in to comment.