Re: [ansible-project] command: docker pull sometimes hangs indefinitely

2014-01-13 Thread Joe Kimmel
just to close this thread, i tried a couple suggestions in tandem (not scientifically) and the following line is working for me: shell: docker pull localhost:9000// < /dev/null 2>&1 | logger -p local2.notice -i (where elsewhere i've configured syslog to send local2 to a file) thanks! On Sa

Re: [ansible-project] command: docker pull sometimes hangs indefinitely

2014-01-11 Thread Joe Kimmel
thanks! - i will try that. however when i run the command manually it doesn't (seem to) need any input. however it does do weird things to my terminal (it kinda overwrites its own previous lines, filling the terminal with a palimpsest of its own output, finishing by dropping a prompt somewhe

Re: [ansible-project] command: docker pull sometimes hangs indefinitely

2014-01-11 Thread Michael DeHaan
I should also mention: I'm going to be writing a guide for the "Guides" section of the docs: http://docs.ansible.com/guides.html (we still have upgrades to the EC2 guide on our list -- if people would like to jump in, just click a guide section and hit the "edit on github" button!) On Sat, J

Re: [ansible-project] command: docker pull sometimes hangs indefinitely

2014-01-11 Thread Michael DeHaan
It's probably that the command is asking for user input. See if it offers any batch flags, or consider feeding it wrote: > hi there, > > > i'm running a playbook for initializing my server that needs to pull a > couple docker containers (and then start them). > The docker register is itself run

[ansible-project] command: docker pull sometimes hangs indefinitely

2014-01-11 Thread Joe Kimmel
hi there, i'm running a playbook for initializing my server that needs to pull a couple docker containers (and then start them). The docker register is itself running in a docker container on localhost, so the tasks look like: command: docker pull localhost:9000/org/container I find that t