12 lines
		
	
	
		
			428 B
		
	
	
	
		
			Bash
		
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			428 B
		
	
	
	
		
			Bash
		
	
	
	
| #!/system/bin/sh
 | |
| # Do NOT assume where your module will be located.
 | |
| # ALWAYS use $MODDIR if you need to know where this script
 | |
| # and module is placed.
 | |
| # This will make sure your module will still work
 | |
| # if Magisk change its mount point in the future
 | |
| MODDIR=${0%/*}
 | |
| 
 | |
| 	while ! [ `pgrep -x dnscrypt-proxy` ] ; do
 | |
| 		$MODDIR/system/bin/dnscrypt-proxy -config /storage/emulated/0/dnscrypt-proxy/dnscrypt-proxy.toml && sleep 15;
 | |
| 	done
 |