This is related to my previous question, but a different one.
I have the following fabfile:
from fabric.api import *
host1 = \'192.168.200.181\'
offli
As of version 1.4 Fabric has a --skip-bad-hosts
option that can be set from the command line, or by setting the variable in your fab file.
env.skip_bad_hosts = True
Documentation for the option is here: http://docs.fabfile.org/en/latest/usage/fab.html#cmdoption--skip-bad-hosts
Don't forget to explicitly set the timeout value also.