base-files: add uci-defaults script to migrate sysctl.conf (#12196)
SVN-Revision: 33448
This commit is contained in:
parent
0f254b4b67
commit
0fd1fb6252
2 changed files with 18 additions and 1 deletions
|
@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/kernel.mk
|
|||
include $(INCLUDE_DIR)/version.mk
|
||||
|
||||
PKG_NAME:=base-files
|
||||
PKG_RELEASE:=115
|
||||
PKG_RELEASE:=116
|
||||
|
||||
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
||||
PKG_BUILD_DEPENDS:=opkg/host
|
||||
|
|
17
package/base-files/files/etc/uci-defaults/migrate-sysctl
Normal file
17
package/base-files/files/etc/uci-defaults/migrate-sysctl
Normal file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ ! -f "/rom/etc/sysctl.conf" ] || cmp "/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
|
||||
|
Loading…
Reference in a new issue