mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 21:09:06 +08:00
fca2b71e28
Signed-off-by: aoiasd <zhicheng.yue@zilliz.com> Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
20 lines
347 B
Go
20 lines
347 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package accesslog
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func chown(name string, info os.FileInfo) error {
|
|
f, err := os.OpenFile(name, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, info.Mode())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
f.Close()
|
|
stat := info.Sys().(*syscall.Stat_t)
|
|
return os.Chown(name, int(stat.Uid), int(stat.Gid))
|
|
}
|