1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/community/dpns/dpns.initd
2020-04-08 10:36:47 +00:00

13 lines
171 B
Text
Executable file

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