我簡單的Fab文件不能我的FreeBSD系統上運行:Python的面料上的FreeBSD不能執行二進制
from fabric.api import run, env
env.shell = '/usr/local/bin/bash' #Fabric doesn't know where to get bash on BSD correctly
def host_type():
run('uname')
首先,我得到一個錯誤有關的外殼,至極我可以通過指定如圖所示的shell變量修復。 但後來我還是有錯誤:
/usr/bin/uname: /usr/bin/uname: cannot execute binary file.
從[docs/FAQS](http://docs.fabfile.org/en/1.6/faq.html#my-remote-system-doesn-t-have-bash-installed-by-default-do -i-need-to-install-bash):「雖然Fabric是用6bash編寫的,但這不是絕對的要求。」因此,如果你想使用FreeBSD,默認情況下它不使用bash([「Linux用戶常常驚訝地發現Bash不是FreeBSD的默認shell,事實上,Bash不包含在默認安裝中。」] (https://www.freebsd.org/doc/en/articles/linux-users/shells.html))。那麼您需要相應地配置Fabric,如他們在FAQ中所述。 – YellowShark