#!/sbin/openrc-run
# SPDX-License-Identifier: MIT

name="safe poweroff for WWAN"

depend() {
	after killprocs
	keyword -timeout
}

start() {
	ebegin "Starting $name"
	wwan-safe-poweroff
	eend 0
}
