blob: cac8e145e57b37a78aff26a8464a3c1ec1132026 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
# enable daemons
echo ":: Enabling cpupower-gui-helper service"
systemctl enable cpupower-gui-helper.service
systemctl enable cpupower-gui.service
}
post_upgrade() {
echo ":: Enabling cpupower-gui-helper service"
systemctl enable cpupower-gui-helper.service
systemctl enable cpupower-gui.service
}
pre_remove() {
systemctl disable cpupower-gui-helper.service
systemctl disable cpupower-gui.service
}
|