mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-06 10:52:25 +00:00
11 lines
288 B
Bash
Executable File
11 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
. /etc/init.d/tc-functions
|
|
|
|
echo "${YELLOW}Running boot2docker init script...${NORMAL}"
|
|
|
|
# This log is started before the persistence partition is mounted
|
|
/opt/bootscript.sh 2>&1 | tee -a /var/log/boot2docker.log &
|
|
|
|
|
|
echo "${YELLOW}Finished boot2docker init script...${NORMAL}"
|