HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: /home4/cca63905/public_html/guiaweb/dev/build/debian/dolibarr.config
#!/bin/sh
# Debian install package run: config, preinst, prerm, postinst, postrm
#

# shellcheck disable=1091,2034

set -e


. /usr/share/debconf/confmodule

db_version 2.0


echo Run the dolibarr config script

# Rotate old configuration
#if [ "$1" = "reconfigure" ] ; then
#	config="/etc/dolibarr/apache.conf"
#	if [ -f $config ] ; then
#		for i in $(seq 8 -1 0) ; do
#			if [ -f ${config}.$i ] ; then
#				mv ${config}.$i ${config}.$(($i +1))
#			fi
#		done
#		mv ${config} ${config}.0
#	fi
#fi
# Rotate old configuration
#if [ "$1" = "reconfigure" ] ; then
#	config="/etc/dolibarr/lighttpd.conf"
#	if [ -f $config ] ; then
#		for i in $(seq 8 -1 0) ; do
#			if [ -f ${config}.$i ] ; then
#				mv ${config}.$i ${config}.$(($i +1))
#			fi
#		done
#		mv ${config} ${config}.0
#	fi
#fi


db_capb backup

db_title "dolibarr" || true


# Ask if we must delete database
echo "Ask for web server to setup"
db_input critical dolibarr/reconfigure-webserver || true

if db_go ; then
	okcancel="1"
else
	okcancel="0"
fi


# Get the database administrator name and password.
#db_beginblock
#	db_input critical "dolibarr/db/admin/name" || true
#	db_input critical "dolibarr/db/admin/password" || true
#db_endblock

# Ask for DB name.
#db_input critical "dolibarr/db/name" || true

# Get the DBMS account username
#db_input critical "dolibarr/db/user/name" || true

# Get the DBMS account password
#db_input critical "dolibarr/db/user/password" || true

# Ask for deleting all the database on package purge.
#db_input critical "dolibarr/postrm" || true

# Launch input screens
#db_go || true

onsuccess='finished="true"'
db_stop

exit 0