diff options
author | Sergey Poznyakoff <gray@gnu.org> | 2019-08-01 23:54:53 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-08-01 23:54:53 +0700 |
commit | 6ce2f8e3389f03ef57e48237510accb55a2a600c (patch) | |
tree | 6fb5dd51e139a9defd3062b68377b4cf8babdcf2 /system/rush/doinst.sh | |
parent | a6e83199ff0d0b83a61de0c993ac700cf5ada96d (diff) |
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.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/rush/doinst.sh b/system/rush/doinst.sh new file mode 100644 index 0000000000000..8dfecc59bd003 --- /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 |