From ddbd1b525955be986151fcbf10ba342ca4fba12c Mon Sep 17 00:00:00 2001 From: Fabio Sangiovanni Date: Sun, 2 Jun 2013 23:31:49 -0500 Subject: system/i8kutils: Added (utilities for Dell Inspiron and Latitude laptops) Signed-off-by: Robby Workman --- system/i8kutils/doinst.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 system/i8kutils/doinst.sh (limited to 'system/i8kutils/doinst.sh') diff --git a/system/i8kutils/doinst.sh b/system/i8kutils/doinst.sh new file mode 100644 index 0000000000..44345888da --- /dev/null +++ b/system/i8kutils/doinst.sh @@ -0,0 +1,13 @@ +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/i8kmon.conf.new -- cgit v1.2.3