diff options
author | Petr Hejl <silenost01@seznam.cz> | 2013-12-07 11:56:46 +0100 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2013-12-14 10:52:34 -0600 |
commit | 82fe820423cbb9974f356f0a6b22583543e0a803 (patch) | |
tree | 535697fde3219a54c316bf8b3710d3e5f574846d /system/zfs-on-linux/doinst.sh | |
parent | 476913333952be412edbcb4a695730176d4fece6 (diff) | |
download | slackbuilds-82fe820423cbb9974f356f0a6b22583543e0a803.tar.gz |
system/zfs-on-linux: Added (native linux port of ZFS).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/zfs-on-linux/doinst.sh')
-rw-r--r-- | system/zfs-on-linux/doinst.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/system/zfs-on-linux/doinst.sh b/system/zfs-on-linux/doinst.sh new file mode 100644 index 0000000000..abc7164225 --- /dev/null +++ b/system/zfs-on-linux/doinst.sh @@ -0,0 +1,29 @@ +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.zfs.new + +if [ -x /sbin/depmod ]; then + chroot . /sbin/depmod -a >/dev/null 2>&1 +fi |