Changeset 42098
- Timestamp:
- Feb 28, 2022, 4:31:43 PM (4 years ago)
- Location:
- trunk/ippTasks
- Files:
-
- 2 edited
-
stack.pro (modified) (2 diffs)
-
staticsky.pro (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTasks/stack.pro
r38062 r42098 27 27 28 28 ### Database lists 29 $stackSkycell_DB = 0 30 $stack_revert_DB = 0 31 $stackSummary_DB = 0 29 if (not($?stackSkycell_DB)) set stackSkycell_DB = 0 30 if (not($?stack_revert_DB)) set stack_revert_DB = 0 31 if (not($?stackSummary_DB)) set stackSummary_DB = 0 32 33 if (not($?stackIgnoreWarpState)) 34 $stackIgnoreWarpState = 35 end 36 37 # is this name ridiculous? 38 macro stack.ignore.warp.stack.set 39 if ($0 != 2) 40 echo "USAGE: stack.ignore.warp.stack.set (on/off)" 41 break 42 end 43 44 if ("$1" == "on") 45 $stackIgnoreWarpState = -ignore-warp-state 46 else 47 $stackIgnoreWarpState = 48 end 49 stack.ignore.warp.stack.get 50 end 51 macro stack.ignore.warp.stack.get 52 if ("$stackIgnoreWarpState" == "-ignore-warp-state") 53 echo "stackIgnoreWarpState is now ON : $stackIgnoreWarpState" 54 return 55 end 56 if ("$stackIgnoreWarpState" == "") 57 echo "stackIgnoreWarpState is now OFF : $stackIgnoreWarpState" 58 return 59 end 60 61 echo "stackIgnoreWarpState has an unexpected value : $stackIgnoreWarpState" 62 end 32 63 33 64 ### Check status of stacking tasks … … 115 146 task.exec 116 147 if ($LABEL:n == 0) break 117 $run = stacktool -tosum 148 $run = stacktool -tosum $stackIgnoreWarpState 118 149 if ($DB:n == 0) 119 150 option DEFAULT -
trunk/ippTasks/staticsky.pro
r38517 r42098 145 145 146 146 task.exec 147 # if we are unable to run the 'exec', use a long retry time 148 periods -exec $RUNEXEC 149 147 150 book npages staticskyResult -var N 148 151 if ($N == 0) break … … 198 201 echo command $run 199 202 end 203 # if we are able to run the 'exec', use a short retry time 204 periods -exec 0.05 200 205 command $run 201 206 end
Note:
See TracChangeset
for help on using the changeset viewer.
