blob: ec61a630a5a4a43b3536b261b78b3a5cb617974f (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
config() {
NEW="$1"
OLD="`dirname $NEW`/`basename $NEW .new`"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/rc.d/rc.wireless.conf.new
# This is a kludge, but it's because there's no --reference option
# on busybox's 'chmod':
if [ -e etc/rc.d/rc.wireless ]; then
if [ -x etc/rc.d/rc.wireless ]; then
chmod 755 etc/rc.d/rc.wireless.new
else
chmod 644 etc/rc.d/rc.wireless.new
fi
fi
# Then config() it:
config etc/rc.d/rc.wireless.new
|