summaryrefslogtreecommitdiffstats
path: root/source/n/wireless-tools/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source/n/wireless-tools/doinst.sh')
-rw-r--r--source/n/wireless-tools/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/source/n/wireless-tools/doinst.sh b/source/n/wireless-tools/doinst.sh
new file mode 100644
index 000000000..ec61a630a
--- /dev/null
+++ b/source/n/wireless-tools/doinst.sh
@@ -0,0 +1,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
+