Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zipr Toolchain
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open Source Software
Zipr Toolchain
Commits
8937fdb7
Commit
8937fdb7
authored
9 years ago
by
jdh8d
Browse files
Options
Downloads
Patches
Plain Diff
added zanalyze and made appropriate changes, including many other typos/bugs/etc.
parent
7f234b82
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitattributes
+1
-0
1 addition, 0 deletions
.gitattributes
build-all.sh
+1
-1
1 addition, 1 deletion
build-all.sh
cfar_postgres_setup_for_other.sh
+24
-0
24 additions, 0 deletions
cfar_postgres_setup_for_other.sh
with
26 additions
and
1 deletion
.gitattributes
+
1
−
0
View file @
8937fdb7
...
...
@@ -2,6 +2,7 @@
/build-all.sh -text
/build_diehard.sh -text
/cfar_postgres_setup.sh -text
/cfar_postgres_setup_for_other.sh -text
/clean-all.sh -text
/clean_diehard.sh -text
/get-peasoup-packages.sh -text
...
...
This diff is collapsed.
Click to expand it.
build-all.sh
+
1
−
1
View file @
8937fdb7
...
...
@@ -111,6 +111,6 @@ cd $PEASOUP_UMBRELLA_DIR
echo
echo
echo
"Overall build complete."
echo
"
peasoup/cfar_umbrella
Overall build complete."
echo
echo
This diff is collapsed.
Click to expand it.
cfar_postgres_setup_for_other.sh
0 → 100755
+
24
−
0
View file @
8937fdb7
#!/bin/bash -x
#Create Database User and Table
source
set_env_vars
other
=
$1
echo
other is
$other
sudo
su
-c
"dropdb peasoup_
${
other
}
"
postgres
sudo
su
-c
"createdb -O
${
other
}
peasoup_
${
other
}
"
postgres
PGDATABASE
=
peasoup_
${
other
}
$PEASOUP_HOME
/tools/db/pdb_setup.sh
for
i
in
$(
seq
0 4
)
do
sudo
su
-c
"dropdb peasoup_
${
other
}
_v
$i
"
postgres
sudo
su
-c
"createdb -O
${
other
}
peasoup_
${
other
}
_v
$i
"
postgres
#Setup the Database to store PEASOUP info
PGDATABASE
=
peasoup_
${
other
}
_v
$i
$PEASOUP_HOME
/tools/db/pdb_setup.sh
done
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