etcd: Add Lchown (returns ErrNotImplemented)

This commit is contained in:
Tom Payne
2018-12-21 02:09:39 +01:00
committed by James Shubin
parent 38befb53ad
commit 83b00fce3e

View File

@@ -347,6 +347,12 @@ func (obj *Fs) Chown(name string, uid, gid int) error {
return ErrNotImplemented
}
// Lchown is the equivalent of os.Lchown. It returns ErrNotImplemented.
func (obj *Fs) Lchown(name string, uid, gid int) error {
// FIXME: Implement Lchown
return ErrNotImplemented
}
// Mkdir makes a new directory.
func (obj *Fs) Mkdir(name string, perm os.FileMode) error {
if err := obj.mount(); err != nil {