summaryrefslogtreecommitdiffstats
path: root/system/TLP/49tlp
diff options
context:
space:
mode:
author Aaditya Bagga2022-08-15 20:10:42 +0200
committer Willy Sudiarto Raharjo2022-08-20 04:14:20 +0200
commita376e517ac04b6d7d94bbf858051026872a535ed (patch)
treee0a799f4b766e5c1adb9eac4528d506b533c4198 /system/TLP/49tlp
parent0302cc700d0e508a38a59a3fb16652b981ae8fdc (diff)
downloadslackbuilds-a376e517ac04b6d7d94bbf858051026872a535ed.tar.gz
system/TLP: Updated for version 1.5.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/TLP/49tlp')
-rw-r--r--system/TLP/49tlp22
1 files changed, 0 insertions, 22 deletions
diff --git a/system/TLP/49tlp b/system/TLP/49tlp
deleted file mode 100644
index bfe0e81af1..0000000000
--- a/system/TLP/49tlp
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-# tlp - handle suspend/hibernate/resume tasks
-#
-# Copyright (c) 2018 Thomas Koch <linrunner at gmx.net>
-# This software is licensed under the GPL v2 or later.
-
-. "${PM_FUNCTIONS}"
-
-case $1 in
- hibernate|suspend)
- tlp suspend
- ;;
-
- thaw|resume)
- tlp resume
- ;;
-
- *) exit $NA
- ;;
-esac
-
-exit 0