You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
450 B
17 lines
450 B
12 years ago
|
#!/bin/sh
|
||
|
|
||
12 years ago
|
if [ ! -f "/rom/etc/sysctl.conf" ] || cmp -s "/rom/etc/sysctl.conf" "/etc/sysctl.conf"; then
|
||
12 years ago
|
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
|