8 lines
123 B
Text
8 lines
123 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
description="Clear RTC wake alarm during shutdown"
|
||
|
|
||
|
start() {
|
||
|
echo 0 >/sys/class/rtc/rtc0/wakealarm
|
||
|
}
|