aports/community/dpns/dpns.initd
2020-04-08 10:36:47 +00:00

14 lines
171 B
Bash
Executable File

#!/sbin/openrc-run
description="Docker Pull & Save"
depend() {
need docker localmount net
}
start() {
ebegin "Loading docker images"
dpns-run
eend $?
}