mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
cd $(dirname $0) || exit 1
 | 
						|
 | 
						|
if [ $(php daily.php -f update) -eq 1 ]; then 
 | 
						|
  git pull --quiet
 | 
						|
  php includes/sql-schema/update.php
 | 
						|
fi
 | 
						|
 | 
						|
php daily.php -f syslog
 | 
						|
php daily.php -f eventlog
 | 
						|
php daily.php -f authlog
 | 
						|
php daily.php -f perf_times 
 | 
						|
php daily.php -f callback
 |