| 
					
				 | 
			
			
				@@ -33,12 +33,24 @@ netNTP=pool.ntp.org 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 # Check if the function exists 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 case $1 in 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  grmlnetwork) grmlnetwork() ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  install)     install()     ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  install2)    install2()     ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  bootloader)  bootloader()  ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  postinstall) postinstall() ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  *) echo "Valid functions are: grmlnetwork, install, postinstall" >&2  ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  grmlnetwork)  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    grmlnetwork() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  install) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    install() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  install2) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    install2() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  bootloader) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    bootloader() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  postinstall) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    postinstall() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  *) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    echo "Valid functions are: grmlnetwork, install, postinstall" >&2 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    ;; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 esac 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 |