12 lines
		
	
	
		
			372 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			372 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/sh
 | 
						|
 | 
						|
# aircox daily tasks:
 | 
						|
# - diffusions monitoring for the current month
 | 
						|
export PATH="/srv/apps/aircox/venv/bin"
 | 
						|
cd /srv/app/aircox/
 | 
						|
scripts/launch_in_venv ./manage.py diffusions_monitor --update --clean --check --mode auto
 | 
						|
# - diffusions monitoring for the next month
 | 
						|
scripts/launch_in_venv ./manage.py diffusions_monitor --update --next-month --mode auto
 | 
						|
cd -
 | 
						|
 |