aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tlp/tlp.initd
blob: 4f29bd3a62d762a91985ee0441b97c533e009558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/sbin/openrc-run

description="Initialize tlp"
command=/usr/sbin/tlp

extra_commands="force-reload"

depend() {
	need localmount
}

status() {
	tlp-stat -s
}

# TODO: I don't know how to write this initd
case "$1" in
    start|\
    stop|\
    restart|\
    force-reload)
        tlp init $1
        ;;
esac