mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
886a355a89
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.
12 lines
367 B
Bash
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
|