Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ipaaca
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
Social Cognitive Systems
ipaaca
Compare revisions
5c6cdea7c2b9e6edeb656ed9c49aa5f282f65754 to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
scs/ipaaca
Select target project
No results found
master
Select Git revision
Swap
Target
ramin.yaghoubzadeh/ipaaca
Select target project
scs/ipaaca
ramin.yaghoubzadeh/ipaaca
2 results
5c6cdea7c2b9e6edeb656ed9c49aa5f282f65754
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ipaacatools/scripts/start-spread-local
+10
-1
10 additions, 1 deletion
ipaacatools/scripts/start-spread-local
resolve.sh
+15
-11
15 additions, 11 deletions
resolve.sh
with
25 additions
and
12 deletions
ipaacatools/scripts/start-spread-local
View file @
460357ca
...
...
@@ -5,6 +5,15 @@ if [ -d /vol/soa/opt64/spread ]; then
/vol/soa/opt64/spread/current/sbin/spread
-n
localhost &
else
echo
"Starting local-only spread daemon for ipaaca ..."
spread
-n
localhost &
spr
=
`
which spread
`
[
$?
-eq
0
]
||
{
echo
spread not found
in
PATH - searching
in
/usr/sbin and /usr/local/sbin
spr
=
''
[
-e
/usr/local/sbin/spread
]
&&
spr
=
"/usr/local/sbin/spread"
[
-e
/usr/sbin/spread
]
&&
spr
=
"/usr/sbin/spread"
[
"
$spr
"
=
""
]
&&
echo
"Could not find spread"
echo
$spr
}
${
spr
}
-n
localhost &
fi
This diff is collapsed.
Click to expand it.
resolve.sh
View file @
460357ca
#!/bin/bash
# This file is deprecated.
# Resolution is performed automatically in the soa script.
# This file has been auto-generated by the soa script.
eval
"
`
grep
'^REQUIRED=\|^OPTIONAL='
DEPS.txt
`
"
REQ
=
"
$REQUIRED
"
OPT
=
"
$OPTIONAL
"
shopt
-q
nullglob
||
resetnullglob
=
1
shopt
-s
nullglob
shopt
-q
dotglob
||
resetdotglob
=
1
shopt
-s
dotglob
echo
"[1mPerforming local resolution... [m"
mkdir
-p
deps/bin
mkdir
-p
deps/lib
mkdir
-p
deps/include
mkdir
-p
deps/scripts
mkdir
-p
deps/python
for
P
in
$REQ
$OPT
;
do
echo
"Importing from
$P
..."
echo
"
[1m
Importing from
$P
...
[m
"
files
=(
../
$P
/dist/bin/
*
)
;
[
"
$files
"
]
&&
cp
-a
../
$P
/dist/bin/
*
deps/bin/
files
=(
../
$P
/dist/lib/
*
)
;
...
...
@@ -31,13 +27,21 @@ for P in $REQ $OPT; do
[
"
$files
"
]
&&
for
zipfile
in
../
$P
/dist/python/
*
.zip
;
do
unzip
-oqq
$zipfile
-d
deps/python
done
files
=(
../
$P
/dist/
*
.cpp.zip
)
;
[
"
$files
"
]
&&
for
zipfile
in
../
$P
/dist/
*
.cpp.zip
;
do
unzip
-oqq
$zipfile
-d
deps/
done
files
=(
../
$P
/dist/
*
.py.zip
)
;
[
"
$files
"
]
&&
for
zipfile
in
../
$P
/dist/
*
.py.zip
;
do
unzip
-oqq
$zipfile
-d
deps/python
done
files
=(
../
$P
/dist/
*
.scripts.zip
)
;
[
"
$files
"
]
&&
for
zipfile
in
../
$P
/dist/
*
.scripts.zip
;
do
unzip
-oqq
$zipfile
-d
deps/scripts
done
chmod
-R
+x deps/bin
chmod
-R
+x deps/scripts
done
echo
"Done."
echo
"[1mDone.[m"
[
"
$resetdotglob
"
]
&&
shopt
-u
dotglob
[
"
$resetnullglob
"
]
&&
shopt
-u
nullglob
[
"
$resetnullglob
"
]
&&
shopt
-u
nullglob
This diff is collapsed.
Click to expand it.
Prev
1
…
8
9
10
11
12
Next