10 lines
		
	
	
		
			235 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			235 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| export ENV_CLUSTER=cmc
 | |
| export APP_NAME=fms
 | |
| export SERVICE_NAME=notification
 | |
| export POD_NAME=linux
 | |
| cd /opt/cap/fms-notification
 | |
| nohup /opt/cap/fms-notification/fms-notification > nohup.log 2>&1 &
 | |
| echo $! > notification.pid
 | |
| 
 |