mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-27 12:05:26 +00:00
Add warn if configuration could not be found
This commit is contained in:
parent
c95bce4aea
commit
76195bb3ac
@ -163,9 +163,13 @@ func LoadConfig(path string, isFile bool) error {
|
||||
viper.SetDefault("ephemeral_node_inactivity_timeout", "120s")
|
||||
|
||||
if err := viper.ReadInConfig(); err != nil {
|
||||
log.Warn().Err(err).Msg("Failed to read configuration from disk")
|
||||
|
||||
return fmt.Errorf("fatal error reading config file: %w", err)
|
||||
}
|
||||
|
||||
log.Debug().Str("path", viper.ConfigFileUsed()).Msg("Read configuration from disk")
|
||||
|
||||
// Collect any validation errors and return them all at once
|
||||
var errorText string
|
||||
if (viper.GetString("tls_letsencrypt_hostname") != "") &&
|
||||
|
Loading…
Reference in New Issue
Block a user