fabric appears to start apache2 but doesn't

后端 未结 6 627
不思量自难忘°
不思量自难忘° 2020-12-29 04:27

I\'m using fabric to remotely start a micro aws server, install git and a git repository, adjust apache config and then restart the server.

If at any point, from the

6条回答
  •  灰色年华
    2020-12-29 05:06

    Couple of more ways to fix the problem.

    • You could run the fab target with --no-pty option

      fab --no-pty 
      
    • Inside fabfile, set the global environment variable always_use_pty to False, before your target code executes

      env.always_use_pty = False
      

提交回复
热议问题