Also remove lock, add config example and other minor fixes Change-Id: I1409dd2f69372528976cadccf287fc44b8a8d99f
		
			
				
	
	
		
			13 lines
		
	
	
		
			301 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			301 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/make -f
 | 
						|
# -*- makefile -*-
 | 
						|
 | 
						|
WITH_PYTHON2 = $(shell test -f /usr/bin/dh_python2 && echo "--with python2")
 | 
						|
 | 
						|
%:
 | 
						|
	dh $@ ${WITH_PYTHON2}
 | 
						|
 | 
						|
override_dh_installinit:
 | 
						|
	dh_installinit --name=libra_worker
 | 
						|
	dh_installinit --name=libra_pool_mgm --no-start
 | 
						|
	sh_installinit --name=libra_statsd --no-start
 |