Use built-in _path_files instead of sed
This commit is contained in:
		
							parent
							
								
									b97156b51e
								
							
						
					
					
						commit
						c4587d5cf7
					
				|  | @ -14,14 +14,12 @@ | |||
| # | ||||
| # ------------------------------------------------------------------------------ | ||||
| 
 | ||||
| # Take all configuration files (ending with .conf) from /etc/wireguard, | ||||
| # remove the .conf-parts to get the inferface names | ||||
| local interfaces=$(ls /etc/wireguard | \ | ||||
|   sed -e "/.conf$/!d" -e "s/.conf$//" 2>/dev/null) | ||||
| 
 | ||||
| # The possible modes | ||||
| local modes=('up\:"bring a wireguard interface up"'\ | ||||
|   'down\:"tear down and remove a wireguard interface"'\ | ||||
|   'save\:"save configuration of a running wireguard interface"') | ||||
| 
 | ||||
| _arguments "1:mode:((${modes}))" "2:interface:(${interfaces})" | ||||
| # 1: Complete mode | ||||
| # 2: Complete interface with all .conf files in /etc/wireguard without the filename extension. | ||||
| _arguments "1:mode:((${modes}))"\ | ||||
|   '2:interface:_path_files -W /etc/wireguard -g "*.conf(^/:r)"' | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue