Currently, the fstab service starts after the log service which breaks
the ability to write a persistent log file to a filesystem mounted by
the fstab service. Thus, change the start order of the fstab service so
it starts right before the log service.
Fixes: b131853 ("ubox: update to latest git revision")
Signed-off-by: Timo Sigurdsson <public_timo.s@silentcreek.de>
[set to 11 to be explicitly before log, not only alphabetically, SPDX]
Signed-off-by: Paul Spooren <mail@aparcar.org>
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			226 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			226 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh /etc/rc.common
 | 
						|
# SPDX-License-Identifier: GPL-2.0-only
 | 
						|
#
 | 
						|
# Copyright (C) 2013-2020 OpenWrt.org
 | 
						|
 | 
						|
START=11
 | 
						|
 | 
						|
boot() {
 | 
						|
	/sbin/block mount
 | 
						|
}
 | 
						|
 | 
						|
start() {
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
restart() {
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
stop() {
 | 
						|
	/sbin/block umount
 | 
						|
}
 |