mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	Only load ACLs if a path is present
This commit is contained in:
		
							parent
							
								
									eabb1ce881
								
							
						
					
					
						commit
						7d46dfe012
					
				@ -121,9 +121,12 @@ func getHeadscaleApp() (*headscale.Headscale, error) {
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// We are doing this here, as in the future could be cool to have it also hot-reload
 | 
			
		||||
	err = h.LoadACLPolicy(absPath(viper.GetString("acl_policy_path")))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Printf("Could not load the ACL policy: %s", err)
 | 
			
		||||
 | 
			
		||||
	if viper.GetString("acl_policy_path") != "" {
 | 
			
		||||
		err = h.LoadACLPolicy(absPath(viper.GetString("acl_policy_path")))
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			log.Printf("Could not load the ACL policy: %s", err)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return h, nil
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user