diff options
Diffstat (limited to 'network/kazehakase/doinst.sh')
-rw-r--r-- | network/kazehakase/doinst.sh | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/network/kazehakase/doinst.sh b/network/kazehakase/doinst.sh index 3f17567532..33f1dcfea4 100644 --- a/network/kazehakase/doinst.sh +++ b/network/kazehakase/doinst.sh @@ -1,18 +1,27 @@ 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... } + +config etc/kazehakase/bookmarkbar.xml.new +config etc/kazehakase/bookmarks.xml.new +config etc/kazehakase/kz-ui-beginner.xml.new +config etc/kazehakase/kz-ui-medium.xml.new +config etc/kazehakase/kz-ui-expert.xml.new +config etc/kazehakase/kz-ui-bookmarks.xml.new config etc/kazehakase/kzrc.new config etc/kazehakase/proxyrc.new +config etc/kazehakase/smartbookmarks.xml.new +config etc/kazehakase/mozilla/encodings.xml.new -if [ -x usr/bin/update-desktop-database ]; then - usr/bin/update-desktop-database -q usr/share/applications +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications fi |