Revert "Format filesystems earlier, before syslog"

This reverts commit 4dd5dca106.

Fix #710 where system hangs after klogd startup on AWS. Possibly
also affects Windows too. Still unclear why but lets revert and
continue investif=gating.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2016-11-12 15:26:33 +00:00
parent 523a4302b7
commit b042b5127f
3 changed files with 4 additions and 14 deletions

View File

@ -35,13 +35,14 @@ RUN \
rc-update add sysfs && \
rc-update add sysfsconf && \
rc-update add fsck && \
rc-update add root && \
rc-update add crond && \
rc-update add local && \
rc-update add localmount && \
rc-update add docker default && \
rc-update add proxy default && \
rc-update add transfused default && \
rc-update add automount sysinit && \
rc-update add automount boot && \
rc-update add diagnostics default && \
rc-update add binfmt_misc default && \
rc-update add hostsettings default && \

View File

@ -1,12 +0,0 @@
#!/sbin/openrc-run
# do nothing as we do this in automount script
start()
{
return 0
}
stop()
{
return 0
}

View File

@ -2,7 +2,8 @@
depend()
{
need dev
after dev
before docker
}
start()