aboutsummaryrefslogtreecommitdiff
path: root/steuermann
diff options
context:
space:
mode:
Diffstat (limited to 'steuermann')
-rw-r--r--steuermann/__init__.py9
-rw-r--r--steuermann/nodes.py1
-rw-r--r--steuermann/run_all.py7
3 files changed, 9 insertions, 8 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
+}
+
diff --git a/steuermann/nodes.py b/steuermann/nodes.py
index 17b73ab..fb674b8 100644
--- a/steuermann/nodes.py
+++ b/steuermann/nodes.py
@@ -3,7 +3,6 @@ Stuff related to the tree structure of the command set
'''
import fnmatch
-from run_all import allowed_flags
import sys
#import exyapps.runtime
diff --git a/steuermann/run_all.py b/steuermann/run_all.py
index 425d5e3..fa8f11f 100644
--- a/steuermann/run_all.py
+++ b/steuermann/run_all.py
@@ -35,13 +35,6 @@ username=getpass.getuser()
#####
-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
-}
def main() :