2021-12-04 09:02:57 +01:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
|
|
|
description="amdgui helper service"
|
|
|
|
pidfile="/run/${SVCNAME}.pid"
|
|
|
|
command="/usr/bin/amdgui-helper"
|
|
|
|
command_args="service"
|
|
|
|
command_user="root"
|
|
|
|
command_background=true
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need udev
|
|
|
|
}
|
2022-03-21 14:02:41 +01:00
|
|
|
|
|
|
|
stop_pre() {
|
|
|
|
rm /var/lib/amdgui/helper.pid /var/lib/amdfand/helper.sock
|
|
|
|
}
|