aboutsummaryrefslogtreecommitdiff
path: root/steuermann/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'steuermann/run.py')
-rw-r--r--steuermann/run.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/steuermann/run.py b/steuermann/run.py
index d5535b3..3a1f578 100644
--- a/steuermann/run.py
+++ b/steuermann/run.py
@@ -39,7 +39,7 @@ def config_yes_no(d,which) :
s = d[which]
return s.strip()[0].lower() in ( 'y', 't', '1' )
-debug=1
+debug=0
#####
@@ -142,7 +142,7 @@ class runner(object):
args = args.copy()
args.update(
- script=node.script,
+ script=node.script % nodes.saved_conditions,
script_type=node.script_type,
host=node.host,
table=node.table,
@@ -152,13 +152,6 @@ class runner(object):
runname=run_name,
)
- print
- print 'script = %s' %args['script']
- print
- print 'script = %s' %(args['script'] % nodes.saved_conditions)
- print
-
-
# also stick everything from env into args (if not already defined)
for k, v in os.environ.items():
if k not in args.keys():