aboutsummaryrefslogtreecommitdiff
path: root/system/rush/doinst.sh
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2019-08-01 23:54:53 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-08-01 23:54:53 +0700
commit6ce2f8e3389f03ef57e48237510accb55a2a600c (patch)
tree6fb5dd51e139a9defd3062b68377b4cf8babdcf2 /system/rush/doinst.sh
parenta6e83199ff0d0b83a61de0c993ac700cf5ada96d (diff)
downloadslackbuilds-6ce2f8e3389f03ef57e48237510accb55a2a600c.tar.xz
system/rush: Added (Restricted User Shell).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/rush/doinst.sh')
-rw-r--r--system/rush/doinst.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/system/rush/doinst.sh b/system/rush/doinst.sh
new file mode 100644
index 000000000000..8dfecc59bd00
--- /dev/null
+++ b/system/rush/doinst.sh
@@ -0,0 +1,14 @@
+#! /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/rush.rc.new