Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Commits
fc38bae6
Commit
fc38bae6
authored
Jun 29, 2022
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
Also avoid SSL_CERT_FILE
parent
12665aff
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!312
Also avoid SSL_CERT_FILE
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
containers/jug/eic-env.sh
+7
-4
7 additions, 4 deletions
containers/jug/eic-env.sh
with
7 additions
and
4 deletions
containers/jug/eic-env.sh
+
7
−
4
View file @
fc38bae6
...
...
@@ -36,13 +36,16 @@ export PS1=${ps1_preamble}'\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\
export
LS_COLORS
=
'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33'
unset
ps1_preamble
## unset CURL_CA_BUNDLE if not accessible
inside container
## this addresses certain HPC systems where
CURL_CA_BUNDLE
##
is customized to point to paths that do not exist inside
## this container
## unset CURL_CA_BUNDLE
and SSL_CERT_FILE
if not accessible
##
inside container:
this addresses certain HPC systems where
##
CURL_CA_BUNDLE and SSL_CERT_FILE are customized to point
##
to paths that do not exist inside
this container
if
[
!
-r
${
CURL_CA_BUNDLE
:-
/
}
]
;
then
unset
CURL_CA_BUNDLE
fi
if
[
!
-r
${
SSL_CERT_FILE
:-
/
}
]
;
then
unset
SSL_CERT_FILE
fi
## redefine ls and less as functions, as this is something we
## can import into our plain bash --norc --noprofile session
...
...
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