diff options
Diffstat (limited to 'steuermann/__init__.py')
-rw-r--r-- | steuermann/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/steuermann/__init__.py b/steuermann/__init__.py index 0e77cbd..b811f10 100644 --- a/steuermann/__init__.py +++ b/steuermann/__init__.py @@ -1 +1,10 @@ __version__ = '2.0dev' + +allowed_flags = { + '--all' : '-a' , + '-a' : '' , # run all nodes non-interactively + '-r' : '=' , # give run name + '-n' : '' , # do not actually execute any processes + '-h' : '=' , # give hosts (*.ini) file +} + |