1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 20:20:59 +03:00
openwrt-xburst/package/base-files/files/etc/uci-defaults/migrate-sysctl
jow 3102084037 [package] base-files: make file compare silent in migrate-sysctl
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33449 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-09-17 18:36:51 +00:00

18 lines
451 B
Bash

#!/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