o comando do curl fica preso sem resposta

1

Estou tentando disparar um comando curl no Ubuntu 14.04

curl -v https://omnitruck.chef.io/install.sh | sudo bash -s -- -P chefdk -c stable -v 0.18.30

e isso fica preso em

Getting information for chefdk stable 0.18.30 for ubuntu...
downloading https://omnitruck.chef.io/stable/chefdk/metadata?v=0.18.30&p=ubuntu&pv=14.04&m=x86_64
  to file /tmp/install.sh.2027/metadata.txt
trying wget...

Ele não avança e não há logs para depurar. O que poderia ter dado errado?

    
por aaj 07.04.2017 / 13:32

1 resposta

0

Acho que seu comando tem alguns erros.

curl -v
# this prints verbose messages you don't want to pipe
< HTTP/1.1 200 OK
< Cache-Control: max-age=300, public
...

baixe o script de shell com

curl https://omnitruck.chef.io/install.sh -o install.sh

execute o comando com o arquivo baixado.

Atualização:

Para executar install.sh , você precisa adicionar o sinalizador de executável:

chmod +x ./install.sh
    
por 07.04.2017 / 13:53