blob: f726a663f1da92f9bcb981553476b35a8a2382b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
systemctl start ryzenctrl-root.service
systemctl enable ryzenctrl-root.service
}
post_upgrade() {
post_install
}
post_remove() {
systemctl stop ryzenctrl-root.service
}
|