Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ox-installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue 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
QA
ox-installer
Commits
a689385f
Commit
a689385f
authored
5 years ago
by
benedikt.kroening
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup
parent
2e94206a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config/init-guard.sh
+0
-137
0 additions, 137 deletions
config/init-guard.sh
config/middleware/20_init_middleware.sh
+0
-26
0 additions, 26 deletions
config/middleware/20_init_middleware.sh
with
0 additions
and
163 deletions
config/init-guard.sh
deleted
100755 → 0
+
0
−
137
View file @
2e94206a
# #!/bin/bash
# #
# # Copyright (C) 2019 OX Software GmbH
# #
# # This file is part of OX Automation.
# #
# # OX Automation is free software: you can redistribute it and/or modify
# # it under the terms of the GNU General Public License as published by
# # the Free Software Foundation, either version 3 of the License, or
# # (at your option) any later version.
# #
# # OX Automation is distributed in the hope that it will be useful,
# # but WITHOUT ANY WARRANTY; without even the implied warranty of
# # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# #
# # See the GNU General Public License for more details.
# #
# # You should have received a copy of the GNU General Public License
# # along with OX Automation. If not, see <http://www.gnu.org/licenses/>.
# #
# #
# # Authors:
# # Benedikt Kroening <benedikt.kroening@open-xchange.com>
# #
# set -e
# SCRIPT_DIR="$( cd "$(dirname "$0")" ; pwd -P)"
# # sourcing some commonly used functions and executing basic checks
# source ${SCRIPT_DIR}/../lib/common.bash
# checkRootPrivileges
# detectDistribution
# # sourcing the default configuration to use
# # source ${SCRIPT_DIR}/config
# OX_GUARD_ENDPOINT_URL="http://localhost:8009/guardadmin"
# ## Help text
# show_usage() {
# echo -n "
# $0 [OPTIONS]
# "
# }
# ### reading config from command line; overriding defaults
# POSITIONAL=()
# while [[ $# -gt 0 ]]
# do
# key="$1"
# case $key in
# -h|--help)
# show_usage
# exit 0
# shift
# ;;
# --debug)
# echo "WARNING: Debug flag set (--debug)"
# set -x
# shift
# ;;
# --mail-host)
# echo "Using $2 as mail backend ..."
# OX_MAIL_HOST="$2"
# shift
# shift
# ;;
# --mail-domain)
# echo "Using $2 as mail domain ..."
# OX_MAIL_DOMAIN="$2"
# shift
# shift
# ;;
# --guard-endpoint)
# echo "Using $2 as guard endpoint url ..."
# OX_GUARD_ENDPOINT_URL="$2"
# shift
# shift
# ;;
# *) # unknown option
# POSITIONAL+=("$1") # save it in an array for later
# shift
# ;;
# esac
# done
# set -- "${POSITIONAL[@]}" # restore positional parameters
# echo "Using following configuration:"
# set | grep "OX_GUARD"
# echo "==============================="
# sleep 5
# # configure guard
# setOXProperty com.openexchange.capability.guard true /opt/open-xchange/etc/guard-api.properties
# setOXProperty com.openexchange.capability.guard-mail true /opt/open-xchange/etc/guard-api.properties
# setOXProperty com.openexchange.capability.guard-drive true /opt/open-xchange/etc/guard-api.properties
# setOXProperty com.openexchange.share.staticGuestCapabilities "guard" /opt/open-xchange/etc/guard-api.properties
# setOXProperty com.openexchange.guard.endpoint "${OX_GUARD_ENDPOINT_URL}" /opt/open-xchange/etc/guard-api.properties
# setOXProperty com.openexchange.rest.services.basic-auth.login "open-xchange" /opt/open-xchange/etc/server.properties
# setOXProperty com.openexchange.rest.services.basic-auth.password "secret" /opt/open-xchange/etc/server.properties
# # set guard config
# # TODO:
# setOXProperty com.openexchange.guard.oxGuardDatabaseHostname "${DATABASE_HOST_NAME}" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.oxGuardShardDatabase "${DATABASE_HOST_NAME}" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.databaseUsername "${OX_CONFIGDB_USER}" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.databasePassword "${OX_CONFIGDB_PASS}" /opt/open-xchange/etc/guard-core.properties
# # setOXProperty com.openexchange.guard.restApiHostname "frontend" /opt/open-xchange/etc/guard-core.properties
# # setOXProperty com.openexchange.guard.supportApiUsername "open-xchange" /opt/open-xchange/etc/guard-core.properties
# # setOXProperty com.openexchange.guard.supportApiPassword "secret" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.restApiUsername "open-xchange" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.restApiPassword "secret" /opt/open-xchange/etc/guard-core.properties
# # setOXProperty com.openexchange.guard.oxBackendPort 80 /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.oxBackendPath "/appsuite/api/" /opt/open-xchange/etc/guard-core.properties
# # setup localhost config for sharing tests
# # todo: guard external smtp config not hardcoded
# setOXProperty com.openexchange.guard.externalReaderPath "localhost/guard/reader/reader.html" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.externalEmailURL "localhost" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.guestSMTPServer "${OX_MAIL_HOST}" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.guestSMTPPort "25" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.guestSMTPUsername "noreply" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.guestSMTPPassword "secret" /opt/open-xchange/etc/guard-core.properties
# setOXProperty com.openexchange.guard.guestSMTPMailFrom "noreply@${OX_MAIL_DOMAIN}" /opt/open-xchange/etc/guard-core.properties
# restartService open-xchange
# sleep 10
# waitPort localhost 8009
# /opt/open-xchange/sbin/guard --directory /opt/open-xchange/etc --init
# restartService open-xchange
# echo "$(date)" >> /opt/open-xchange/etc/99-init-guard-done
\ No newline at end of file
This diff is collapsed.
Click to expand it.
config/middleware/20_init_middleware.sh
+
0
−
26
View file @
a689385f
...
...
@@ -27,31 +27,6 @@ SCRIPT_DIR="$( cd "$(dirname "$0")" ; pwd -P)"
source
${
SCRIPT_DIR
}
/../../lib/common.bash
# Init environment as configured:
# INSTALL_TYPE=singlenode:
# done: waitfordb
# ---> restartoxservice
# registerserver
# registerfilestore
# registerdatabase masterdatabase
# registerglobaldb
# OX_ENV_QA=true:
# if [[ "${INSTALL_TYPE}" != "singlenode" ]]; then
# echo "This is not a singlenode environment, aborting this script ..."
# exit 0
# fi
INIT_STATE_FILE
=
"/opt/open-xchange/etc/20-init-middleware-done"
if
[
!
-f
${
INIT_STATE_FILE
}
]
;
then
...
...
@@ -76,7 +51,6 @@ if [ ! -f ${INIT_STATE_FILE} ]; then
setOXProperty com.openexchange.jolokia.password secret /opt/open-xchange/etc/jolokia.properties
setOXProperty com.openexchange.jolokia.restrict.to.localhost
false
/opt/open-xchange/etc/jolokia.properties
echo
"Waiting for database service ..."
waitPort
${
DATABASE_HOST_NAME
}
${
DATABASE_HOST_PORT
}
...
...
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