Просмотр исходного кода

Merge pull request #4799 from tianon/no-more-inotifywait

Remove the inotifywait hack from our upstart host-integration example
Sven Dowideit 11 лет назад
Родитель
Сommit
a4b4448009
1 измененных файлов с 0 добавлено и 5 удалено
  1. 0 5
      docs/sources/use/host_integration.rst

+ 0 - 5
docs/sources/use/host_integration.rst

@@ -43,11 +43,6 @@ into it:
    stop on runlevel [!2345]
    respawn
    script
-     # Wait for docker to finish starting up first.
-     FILE=/var/run/docker.sock
-     while [ ! -e $FILE ] ; do
-       inotifywait -t 2 -e create $(dirname $FILE)
-     done
      /usr/bin/docker start -a redis_server
    end script