This repository has been archived on 2026-02-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-03-08 12:21:29 +11:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
|
|
|
|
|
description="Direktil boot operations."
|
|
|
|
|
|
|
|
|
|
depend()
|
|
|
|
|
{
|
2019-03-12 10:06:09 +11:00
|
|
|
provide net
|
|
|
|
|
before sysctl
|
2019-03-08 12:21:29 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start()
|
|
|
|
|
{
|
|
|
|
|
ebegin "Running Direktil boot operations"
|
|
|
|
|
/sbin/dkl init boot
|
|
|
|
|
eend $? "Direktil boot operations failed"
|
|
|
|
|
}
|