aboutsummaryrefslogtreecommitdiff
path: root/system/system76-power/doinst.sh
diff options
context:
space:
mode:
authorErich Ritz <erich.public@protonmail.com>2019-11-16 21:13:27 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-11-16 21:13:54 +0700
commit5ed686759954a173c715912216babb3ab441d406 (patch)
tree97f495c83047f9528f6a86538e922eacc2ee9983 /system/system76-power/doinst.sh
parentb873eb05f1c9f6e68c5b9a980e3ccd07be1cbcf2 (diff)
system/system76-power: Added (utility for managing graphics/power)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/system76-power/doinst.sh')
-rw-r--r--system/system76-power/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/system/system76-power/doinst.sh b/system/system76-power/doinst.sh
new file mode 100644
index 0000000000000..c7e601af05a6e
--- /dev/null
+++ b/system/system76-power/doinst.sh
@@ -0,0 +1,26 @@
+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.system76-power.new
+config etc/logrotate.d/system76-power.new