slackware-current/source/a/cryptsetup/doinst.sh
Patrick J Volkerding 886a355a89 Mon Aug 1 23:30:59 UTC 2022
a/cryptsetup-2.5.0-x86_64-2.txz:  Rebuilt.
  Use file descriptor 3 in rc.luks's main loop so that sdtin works properly for
  cryptsetup and/or a keyscript. PiterPunk gave it to me like this and then I
  proceeded to break it. Sorry about that.
2022-08-02 09:00:16 +02:00

12 lines
367 B
Bash

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/rc.d/rc.luks.new