diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-12 11:48:00 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-12 11:48:00 +0200 |
commit | 14107a872614710967d3ae565f0253bcbdba55a1 (patch) | |
tree | 22e08a133d179fcaff20b8c194043503e34d571a /system/cpufreqd/doinst.sh | |
parent | 37746c6831d9b083acc72dd84f86372619adb06c (diff) |
system/cpufreqd: Removed from 12.2 repository
Diffstat (limited to 'system/cpufreqd/doinst.sh')
-rw-r--r-- | system/cpufreqd/doinst.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/system/cpufreqd/doinst.sh b/system/cpufreqd/doinst.sh deleted file mode 100644 index 038f30587a5d..000000000000 --- a/system/cpufreqd/doinst.sh +++ /dev/null @@ -1,14 +0,0 @@ -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/cpufreqd.conf.new |