diff options
Diffstat (limited to 'source/a/e2fsprogs/doinst.sh')
-rw-r--r-- | source/a/e2fsprogs/doinst.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/a/e2fsprogs/doinst.sh b/source/a/e2fsprogs/doinst.sh new file mode 100644 index 00000000..c47d7e84 --- /dev/null +++ b/source/a/e2fsprogs/doinst.sh @@ -0,0 +1,18 @@ +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/mke2fs.conf.new + +if [ -x /usr/bin/install-info ]; then + install-info --info-dir=/usr/info /usr/info/libext2fs.info.gz 2> /dev/null +fi + |