aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/uci-defaults/migrate-sysctl
blob: b3796a4d2d8092320c5b4225d8421cf56ec177eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

if [ ! -f "/rom/etc/sysctl.conf" ] || cmp -s "/rom/etc/sysctl.conf" "/etc/sysctl.conf"; then
	exit 0
fi

fingerprint="$(md5sum /etc/sysctl.conf)"
fingerprint="${fingerprint%% *}"

if [ "$fingerprint" = "1b05ebb41f72cb84e5510573cd4aca26" ] || \
   [ "$fingerprint" = "62deb895be1a7f496040187b7c930e4e" ]; then
	logger -t migrate-sysctl "Updating sysctl.conf to use current defaults"
	cp "/rom/etc/sysctl.conf" "/etc/sysctl.conf"
fi

exit 0