mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	Local variable declarations outside of functions are illegal since the Busybox update to v1.25.0, therfore remove them from the appropriate places. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
		
			
				
	
	
		
			13 lines
		
	
	
		
			406 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			406 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| ppwd="$(sed -ne '/^root:/s/^root:\([^:]*\):.*$/\1/p' /etc/passwd)"
 | |
| spwd="$(sed -ne '/^root:/s/^root:\([^:]*\):.*$/\1/p' /etc/shadow)"
 | |
| 
 | |
| if [ -n "${ppwd#[\!x]}" ] && [ -z "${spwd#[\!x]}" ]; then
 | |
| 	logger -t migrate-shadow "Moving root password hash into shadow database"
 | |
| 	sed -i -e "s:^root\:[^\:]*\::root\:x\::"     /etc/passwd
 | |
| 	sed -i -e "s:^root\:[^\:]*\::root\:$ppwd\::" /etc/shadow
 | |
| fi
 | |
| 
 | |
| exit 0
 |