Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Peter Sherwood
athena
Commits
7404a575
Commit
7404a575
authored
7 years ago
by
obreshko
Browse files
Options
Downloads
Patches
Plain Diff
Update copy_rpm_eos.sh to catch if there are any problems during the rpm copy as per ATLINFR-1740.
parent
4c0ef88d
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Build/AtlasBuildScripts/copy_rpm_eos.sh
+8
-6
8 additions, 6 deletions
Build/AtlasBuildScripts/copy_rpm_eos.sh
with
8 additions
and
6 deletions
Build/AtlasBuildScripts/copy_rpm_eos.sh
+
8
−
6
View file @
7404a575
...
...
@@ -3,6 +3,8 @@
# Script to copy local nightly RPMs to EOS and run createrepo
#
ERROR_COUNT
=
0
# Function printing the usage information for the script
usage
()
{
echo
"Usage: copy_rpm_eos.sh <-b branch> <-a arch> <-d week_day> <-s source dir> "
...
...
@@ -65,24 +67,24 @@ DESTDIR=${DESTDIR}/${BRANCH}/${ARCH}/${DDAY}
if
[
!
-d
${
DESTDIR
}
]
;
then
echo
"mkdir -p
${
DESTDIR
}
"
mkdir
-p
${
DESTDIR
}
mkdir
-p
${
DESTDIR
}
||
((
ERROR_COUNT++
))
fi
arr_rpm
=(
`
(
shopt
-s
nocaseglob
;
ls
${
SOURCEDIR
}
/
*
.rpm
)
`
)
if
[
"
${#
arr_rpm
[@]
}
"
-le
0
]
;
then
echo
"nicos_rpm: Warning: no rpm files are found in
${
SOURCEDIR
}
"
((
ERROR_COUNT++
))
else
for
ele
in
"
${
arr_rpm
[@]
}
"
do
echo
"Info: copying
$ele
to
${
DESTDIR
}
"
cp
-a
$ele
${
DESTDIR
}
;
stateos
=
$?
if
[
"
$stateos
"
-ne
0
]
;
then
echo
"Error of eos copy: exit code
$stateos
"
fi
cp
-a
$ele
${
DESTDIR
}
||
((
ERROR_COUNT++
))
done
fi
echo
"====================================================="
echo
"=== Update http RPMs location"
echo
"====================================================="
echo
"nicos_rpm::::::: createrepo --workers 8 --update
${
DESTDIR
}
:::::::"
`
date
`
createrepo
--workers
8
--update
${
DESTDIR
}
createrepo
--workers
8
--update
${
DESTDIR
}
||
((
ERROR_COUNT++
))
exit
${
ERROR_COUNT
}
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