You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
532 B
Bash
15 lines
532 B
Bash
#!/bin/sh
|
|
while ! mkdir /var/run/config.check; do sleep 1; done
|
|
trap "trap - EXIT; rm -rf /var/run/config.check; exit" EXIT HUP INT QUIT TERM
|
|
for config in /etc/config/*; do
|
|
file="${config##*/}"
|
|
uci show "$file" > /var/run/config.check/"$file"
|
|
done
|
|
MD5FILE=/var/run/config.md5
|
|
[ -f $MD5FILE ] && {
|
|
for c in `md5sum -c $MD5FILE 2>/dev/null| grep FAILED | cut -d: -f1`; do
|
|
ubus call service event "{ \"type\": \"config.change\", \"data\": { \"package\": \"$(basename "$c")\" }}"
|
|
done
|
|
}
|
|
md5sum /var/run/config.check/* > $MD5FILE
|