17 lines
233 B
Plaintext
17 lines
233 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
|
||
|
description="Direktil default operations."
|
||
|
|
||
|
depend()
|
||
|
{
|
||
|
# need anything?
|
||
|
:
|
||
|
}
|
||
|
|
||
|
start()
|
||
|
{
|
||
|
ebegin "Running Direktil default operations"
|
||
|
/sbin/dkl init default
|
||
|
eend $? "Direktil default operations failed"
|
||
|
}
|