Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
LECABashLib
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LECASofts
LECABashLib
Commits
7a4f06a0
Commit
7a4f06a0
authored
Mar 08, 2016
by
Eric Coissac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change the library path to its absolute value
parent
2063bf8b
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
25 deletions
+8
-25
clobber.sh
clobber.sh
+0
-3
download.sh
download.sh
+0
-3
lecaluke.sh
lecaluke.sh
+0
-3
logging.sh
logging.sh
+0
-3
mutex.sh
mutex.sh
+0
-4
sets.sh
sets.sh
+0
-4
stacks.sh
stacks.sh
+0
-3
utils.sh
utils.sh
+8
-2
No files found.
clobber.sh
View file @
7a4f06a0
...
...
@@ -43,9 +43,6 @@
#
THIS_DIR
=
"
$(
dirname
${
BASH_SOURCE
[0]
}
)
"
source
"
${
THIS_DIR
}
/utils.sh"
include logging
logdebug
"Load clobber package"
...
...
download.sh
View file @
7a4f06a0
...
...
@@ -37,9 +37,6 @@
#
#
THIS_DIR
=
"
$(
dirname
${
BASH_SOURCE
[0]
}
)
"
source
"
${
THIS_DIR
}
/utils.sh"
include logging
logdebug
"Load download package"
...
...
lecaluke.sh
View file @
7a4f06a0
...
...
@@ -14,9 +14,6 @@
# The lecaluke module provides a set of variable defining emplacement
# where LECA ressources are stored on the LUKE cluster.
THIS_DIR
=
"
$(
dirname
${
BASH_SOURCE
[0]
}
)
"
source
"
${
THIS_DIR
}
/utils.sh"
include logging
logdebug
"Load lecaluke package"
...
...
logging.sh
View file @
7a4f06a0
...
...
@@ -44,9 +44,6 @@
# By default the logging level is set to WARNING.
# Therefore only WARNING and ERROR messages will be actually logged.
THIS_DIR
=
"
$(
dirname
${
BASH_SOURCE
[0]
}
)
"
source
"
${
THIS_DIR
}
/utils.sh"
LOG_DEBUG_LEVEL
=
1
LOG_INFO_LEVEL
=
2
LOG_WARNING_LEVEL
=
3
...
...
mutex.sh
View file @
7a4f06a0
...
...
@@ -9,10 +9,6 @@
#
#
THIS_DIR
=
"
$(
dirname
${
BASH_SOURCE
[0]
}
)
"
source
"
${
THIS_DIR
}
/utils.sh"
include logging
logdebug
"Load mutex package"
...
...
sets.sh
View file @
7a4f06a0
...
...
@@ -9,10 +9,6 @@
#
#
THIS_DIR
=
"
$(
dirname
${
BASH_SOURCE
[0]
}
)
"
source
"
${
THIS_DIR
}
/utils.sh"
include logging
logdebug
"Load sets package"
...
...
stacks.sh
View file @
7a4f06a0
...
...
@@ -28,9 +28,6 @@
# and the return status is set to 1 instead of 0 usually
#
THIS_DIR
=
"
$(
dirname
${
BASH_SOURCE
[0]
}
)
"
source
"
${
THIS_DIR
}
/utils.sh"
include logging
logdebug
"Load stacks package"
...
...
utils.sh
View file @
7a4f06a0
...
...
@@ -14,8 +14,14 @@ if [[ -z "${LECALIB_UTIL_SH}" ]]; then
THIS_DIR
=
"
$(
dirname
${
BASH_SOURCE
[0]
}
)
"
source
"
${
THIS_DIR
}
/utils.sh"
LECALIB_DIR
=
"
${
THIS_DIR
}
"
source
"
${
THIS_DIR
}
/utils.sh"
function
abspath
()
{
local
P
=
$1
echo
"
$(
cd
"
$(
dirname
"
${
P
}
"
)
"
&&
pwd
-P
)
/
$(
basename
"
${
P
}
"
)
"
}
LECALIB_DIR
=
$(
abspath
"
${
THIS_DIR
}
"
)
function
upper
()
{
echo
$1
|
tr
"a-z"
"A-Z"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment