diff options
author | Menno E. Duursma <druiloor@zonnet.nl> | 2010-05-11 22:25:53 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:25:53 +0200 |
commit | bfc1cc0d95633688d16e3a0f108db050f60a20c3 (patch) | |
tree | 0ac20dfbf3cdf2d279cd71ebbab6beee275b29d9 /network/unfs3/doinst.sh | |
parent | 288b7a272d92d2632663b2e6e2fb40761b8deee0 (diff) | |
download | slackbuilds-bfc1cc0d95633688d16e3a0f108db050f60a20c3.tar.gz |
network/unfs3: Updated for version 0.9.21
Diffstat (limited to 'network/unfs3/doinst.sh')
-rw-r--r-- | network/unfs3/doinst.sh | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/network/unfs3/doinst.sh b/network/unfs3/doinst.sh index e61b40abaa..302df95e70 100644 --- a/network/unfs3/doinst.sh +++ b/network/unfs3/doinst.sh @@ -1,16 +1,22 @@ config() { NEW="$1" - OLD="`dirname $NEW`/`basename $NEW .new`" + 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 + 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... } -# Add this package's version of boot-script, if only for documentation +# Keep same perms on rc.unfsd.new: +if [ -e etc/rc.d/rc.unfsd ]; then + cp -a etc/rc.d/rc.unfsd etc/rc.d/rc.unfsd.new.incoming + cat etc/rc.d/rc.unfsd.new > etc/rc.d/rc.unfsd.new.incoming + mv etc/rc.d/rc.unfsd.new.incoming etc/rc.d/rc.unfsd.new +fi + config etc/rc.d/rc.unfsd.new |