mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-31 03:03:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			177 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			177 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| sudo service mysqld status &> /dev/null
 | |
| if [ $? -gt 0 ]; then
 | |
|     echo '[FAIL] mysqld is not running'
 | |
|     exit 1
 | |
| else
 | |
|     echo '[OK] mysqld is running'
 | |
|     exit 0
 | |
| fi
 |