Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
99c19593
Commit
99c19593
authored
5 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
Revert "client_ar.sh now calls 'eos rm' in parallel"
This reverts commit
14cc088c
.
parent
328091e7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
continuousintegration/orchestration/tests/client_ar.sh
+10
-5
10 additions, 5 deletions
continuousintegration/orchestration/tests/client_ar.sh
with
10 additions
and
5 deletions
continuousintegration/orchestration/tests/client_ar.sh
+
10
−
5
View file @
99c19593
...
...
@@ -396,11 +396,16 @@ if [[ $REMOVE == 1 ]]; then
# recount the files on tape as the workflows may have gone further...
INITIALFILESONTAPE
=
$(
admin_cta archivefile
ls
--all
|
grep
${
EOS_DIR
}
|
wc
-l
)
echo
"Before starting deletion there are
${
INITIALFILESONTAPE
}
files on tape."
for
TEST_FILE_NAME
in
$(
grep
archived
$
${
STATUS_FILE
}
|
sed
-e
's/ .*$//'
)
;
do
echo
${
TEST_FILE_NAME
}
done
|
KRB5CCNAME
=
/tmp/
${
EOSPOWER_USER
}
/krb5cc_0
XrdSecPROTOCOL
=
krb5 xargs
--max-procs
=
${
NB_PROCS
}
-iTEST_FILE_NAME
eos root://
${
EOSINSTANCE
}
rm
${
EOS_DIR
}
/TEST_FILE_NAME
#XrdSecPROTOCOL=sss eos -r 0 0 root://${EOSINSTANCE} rm -Fr ${EOS_DIR} &
KRB5CCNAME
=
/tmp/
${
EOSPOWER_USER
}
/krb5cc_0
XrdSecPROTOCOL
=
krb5 eos root://
${
EOSINSTANCE
}
rm
-Fr
${
EOS_DIR
}
&
EOSRMPID
=
$!
# wait a bit in case eos prematurely fails...
sleep
0.1
if
test
!
-d
/proc/
${
EOSRMPID
}
;
then
# eos rm process died, get its status
wait
${
EOSRMPID
}
test
$?
-ne
0
&&
die
"Could not launch eos rm"
fi
# Now we can start to do something...
# deleted files are the ones that made it on tape minus the ones that are still on tapes...
echo
"Waiting for files to be deleted:"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment