diff --git a/MANIFEST.in b/MANIFEST.in index d11935c..90af84b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ recursive-include rq * recursive-include doc * +include README.md include config.yaml -include example-config.yaml diff --git a/timmy/nodes.py b/timmy/nodes.py index b967854..ad44628 100644 --- a/timmy/nodes.py +++ b/timmy/nodes.py @@ -335,6 +335,9 @@ class Nodes(object): logging.error("directory %s doesn't exist" % (self.dirname)) sys.exit(1) self.files = get_dir_structure(conf.rqdir)[os.path.basename(self.dirname)] + if (conf.fuelip is None) or (conf.fuelip == ""): + logging.error('Nodes: looks like fuelip is not set(%s)' % conf.fuelip) + sys.exit(7) self.fuelip = conf.fuelip self.sshopts = conf.ssh['opts'] self.sshvars = conf.ssh['vars']