-
benedikt.kroening authored
Missed some restart for the documentconverter to be functional after the initial setup. A seperate restart was required prior to this fix.
benedikt.kroening authoredMissed some restart for the documentconverter to be functional after the initial setup. A seperate restart was required prior to this fix.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
22_init-documentconverter.sh 2.06 KiB
#!/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
## 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
;;
*) # unknown option
POSITIONAL+=("$1") # save it in an array for later
shift
;;
esac
done
set -- "${POSITIONAL[@]}" # restore positional parameters
if [ "${INSTALL_DOCUMENTCONVERTER}" = false ]; then
echo "Skipping init script for documentconverter"
exit 0
fi
INIT_STATE_FILE="/opt/open-xchange/etc/22-init-documentconverter-done"
if [ ! -f ${INIT_STATE_FILE} ]; then
# Restart will be done later
${SCRIPT_DIR}/../../features/documentconverter.sh --enable
echo "$(date)" >> ${INIT_STATE_FILE}
else
echo "WARNING: This scripts has already been executed and will be skipped!"
sleep 5
fi
echo "Documentconverter init finished at: "
cat ${INIT_STATE_FILE}