diff options
author | Robby Workman <rw@rlworkman.net> | 2010-07-07 05:55:23 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2010-07-07 05:55:23 -0400 |
commit | 75fd3438bd1f50d0382fc284a9438da929997bcf (patch) | |
tree | 713872ad3997be1fd452f437b941ff177449ca25 /system/upower/doinst.sh | |
parent | 151b215a699dbfcf2d944381f458ff2e1ae53815 (diff) |
system/upower: Added (power management abstraction daemon)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/upower/doinst.sh')
-rw-r--r-- | system/upower/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/upower/doinst.sh b/system/upower/doinst.sh new file mode 100644 index 0000000000000..46abf401c205c --- /dev/null +++ b/system/upower/doinst.sh @@ -0,0 +1,15 @@ +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/UPower/UPower.conf.new + |