Move FilePerm function from cli to headscale

This commit is contained in:
Kristoffer Dalby 2022-06-03 09:24:36 +02:00
parent 533ecee252
commit 35722cd5aa
2 changed files with 15 additions and 12 deletions

View file

@ -29,7 +29,6 @@ import (
)
const (
PermissionFallback = 0o700
HeadscaleDateTimeFormat = "2006-01-02 15:04:05"
)
@ -570,17 +569,6 @@ func (tokenAuth) RequireTransportSecurity() bool {
return true
}
func GetFileMode(key string) fs.FileMode {
modeStr := viper.GetString(key)
mode, err := strconv.ParseUint(modeStr, headscale.Base8, headscale.BitSize64)
if err != nil {
return PermissionFallback
}
return fs.FileMode(mode)
}
func contains[T string](ts []T, t T) bool {
for _, v := range ts {
if reflect.DeepEqual(v, t) {