diff options
author | Murat D. Kadirov <banderols@gmail.com> | 2010-05-12 17:43:26 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 17:43:26 +0200 |
commit | 4435bd3842ccfb0a803839ad7111b8ae9efa4278 (patch) | |
tree | 2f31ca7362c5f057558cda6bdbd0e27da57b018e /network/hostapd/doinst.sh | |
parent | 83b561e314326cc8406d1ee1836bd2fdd38a7fba (diff) |
network/hostapd: Updated for version 0.5.11
Diffstat (limited to 'network/hostapd/doinst.sh')
-rw-r--r-- | network/hostapd/doinst.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/network/hostapd/doinst.sh b/network/hostapd/doinst.sh index 1c9c32c1c8dd..16bfa3f1845f 100644 --- a/network/hostapd/doinst.sh +++ b/network/hostapd/doinst.sh @@ -1,5 +1,3 @@ -#!/bin/sh - config() { NEW="$1" OLD="$(dirname $NEW)/$(basename $NEW .new)" @@ -13,3 +11,12 @@ config() { # Otherwise, we leave the .new copy for the admin to consider... } +# Keep same perms on rc.hostapd.new: +if [ -e etc/rc.d/rc.hostapd ]; then + cp -a etc/rc.d/rc.hostapd etc/rc.d/rc.hostapd.new.incoming + cat etc/rc.d/rc.hostapd.new > etc/rc.d/rc.hostapd.new.incoming + mv etc/rc.d/rc.hostapd.new.incoming etc/rc.d/rc.hostapd.new +fi + +config etc/rc.d/rc.hostapd.new + |