Skip to content
Snippets Groups Projects
Commit aeada54b authored by Karl-Hermann Wieners's avatar Karl-Hermann Wieners
Browse files

importexp: added intake-only option

parent 0efc841d
No related branches found
No related tags found
No related merge requests found
......@@ -3,14 +3,16 @@
BINDIR=$(dirname $0)
BUILD_SUBDIR=build
INTAKE_ONLY=false
while getopts b:d:D:e:s:t: OPTOPT
while getopts b:d:D:e:is:t: OPTOPT
do
case $OPTOPT in
b) BUILD_SUBDIR=$OPTARG ;;
d) DATA_BASE_DIR=$OPTARG ;;
D) DATA_DIR=$OPTARG ;;
e) ENVIRONMENT=$OPTARG ;;
i) INTAKE_ONLY=true ;;
s) CUSTOM_SUBDIR=$OPTARG ;;
t) EXP_TYPE=$OPTARG ;;
*) exit 1;;
......@@ -138,7 +140,9 @@ EOF
cat << EOF
###\\
[jobs]
.remove = run_start, run, post, mon_index, mon
EOF
$INTAKE_ONLY && echo " .remove = run_start, run, post, mon_index, mon"
cat << EOF
[[intake]]
url = \$EXP_ID.json
###/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment