Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
isochrone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Institut für Informatik
dbis
dbis-isochrone
isochrone
Commits
4e91d9de
Commit
4e91d9de
authored
10 years ago
by
User expired
Browse files
Options
Downloads
Patches
Plain Diff
updates description (regarding supported operating systems)
some variable sorting
parent
66b35213
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
etc/vagrant/bootstrap.sh
+23
-21
23 additions, 21 deletions
etc/vagrant/bootstrap.sh
with
23 additions
and
21 deletions
etc/vagrant/bootstrap.sh
+
23
−
21
View file @
4e91d9de
#! /bin/bash
#############################
# This bootstrap script installs some build tools and the packages
# neo4j, neo4j-spatial, httpd, postgresql, postgis, pgRouting, osmosis, osm2pgrouting
# into a centos6/fedora19 environment.
# It can be used in the context of a Vagrantfile to configure a vagrant box.
# This bootstrap script sets up some build tools and the installs the packages
# - geoserver
# - httpd
# - neo4j
# - neo4j-spatial
# - postgresql
# - postgis
# - pgRouting
# - osmosis
# - osm2pgrouting
# into a centos6 or centos7 environment (fedora 20 might also work, but is untested).
#
# Some data (from the road network of innsbruck) is also downloaded and
# imported into the databases (neo4j and postgresql)
# It can be used in the context of a Vagrantfile to configure a vagrant box and all
# the installations can be configured using global variables (some packages are only
# installed if their installed flag is set to "true")
#
# After various installations, the databases, the httpd server, tomcat
# (and therefor also geoserver, which is installed as war file) are started
# Some data (from the road network of innsbruck) is also downloaded (from osm) and
# imported into the installed databases (neo4j and postgresql)
# After various installations the installed services are started as well
############################
if
[
-f
"/var/vagrant_provision"
]
;
then
...
...
@@ -28,32 +37,25 @@ fi
IMPORT_OSMDATA
=
true
IMPORT_OSMDATA_CACHED
=
true
IMPORT_SCHEDULES
=
true
INSTALL_HTTPD
=
true
INSTALL_GEOSERVER
=
false
INSTALL_HTTPD
=
true
INSTALL_ISOCHRONE_LOCAL
=
false
# installs isochrone from vagrant start directory (eclipse project)
INSTALL_ISOCHRONE_RELEASE
=
true
# installs latest isochrone release from nexus repository
INSTALL_ISOCHRONE_SNAPSHOT
=
true
# installs latest isochrone snapshot from nexus repository
INSTALL_NEO4J
=
false
INSTALL_NEO4J_SPATIAL
=
false
INSTALL_PGROUTING
=
true
INSTALL_POSTGIS
=
true
INSTALL_POSTGRES
=
true
INSTALL_POSTGRES_ADMIN
=
true
# IS_LOCAL_TEST_DEPLOY will prevent install of projects (can be set using command-line argument)
# PsiProbe will always be installed if INSTALL_PROJECT_PSIPROBE is true (even when this is set to true)
IS_LOCAL_TEST_DEPLOY
=
false
# will install caniget2 sample project
INSTALL_PROJECT_CANIGET2
=
false
# will install isochrone from vagrant start directory (eclipse project)
INSTALL_ISOCHRONE_LOCAL
=
false
# will install latest isochrone release from nexus repository
INSTALL_ISOCHRONE_RELEASE
=
true
# will install latest isochrone snapshot from nexus repository
INSTALL_ISOCHRONE_SNAPSHOT
=
true
INSTALL_PROJECT_CANIGET2
=
false
# installs caniget2 sample project
INSTALL_PROJECT_PSIPROBE
=
true
############################
# Ext. argument handling #
############################
IS_LOCAL_TEST_DEPLOY
=
false
# will prevent install of projects if set to true (except for PsiProbe)
PG_DB_NAME
=
"isochrone"
PG_DB_USER
=
"@db_username@"
PG_DB_PASSWORD
=
"@db_password@"
...
...
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