2017-06-25 15:05:24 +08:00
|
|
|
// Read, write and edit the config file
|
|
|
|
// Non-unix specific functions.
|
|
|
|
|
2021-09-09 20:25:25 +08:00
|
|
|
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
|
2017-06-25 15:05:24 +08:00
|
|
|
|
2020-11-08 05:05:58 +08:00
|
|
|
package configfile
|
2017-06-25 15:05:24 +08:00
|
|
|
|
2024-09-03 00:20:08 +08:00
|
|
|
// attemptCopyGroup tries to keep the group the same, which only makes sense
|
2017-06-25 15:05:24 +08:00
|
|
|
// for system with user-group-world permission model.
|
|
|
|
func attemptCopyGroup(fromPath, toPath string) {}
|