13 lines
		
	
	
		
			173 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			173 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/sh
 | |
| 
 | |
| config='/etc/config'
 | |
| 
 | |
| if [ -f "$config" ]; then
 | |
|     source "$config"
 | |
|     echo "$cfg_glued_version"
 | |
|     exit 0
 | |
| fi
 | |
| 
 | |
| echo "ERROR: failed to load '$config'."
 | |
| exit 1
 |