forked from Spark/ssm-services
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			136 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			136 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env watchman
 | |
| 
 | |
| service_type='oneshot'
 | |
| 
 | |
| start() {
 | |
| 	[[ -w / ]] || { mount -o remount,rw /; }
 | |
| 	mount -a
 | |
| 	swapon -a
 | |
| }
 | |
| 
 | |
| unset stop
 |