Commit 3de345db authored by Noel Alonso's avatar Noel Alonso
Browse files

Elimina scripts no usados

parent 73a03937
Loading
Loading
Loading
Loading
+0 −41
Original line number Diff line number Diff line
## This log4j configuration file needs to stay here, and is used as the default logging setup
## during data_dir upgrades and in case the chosen logging config isn't available.
##
## As GeoTools uses java.util.logging logging instead of log4j, GeoServer makes
## the following mappings to adjust the log4j levels specified in this file to
## the GeoTools logging system:
##
## Log4J Level          java.util.logging Level
## --------------------------------------------
## ALL                   FINEST
## TRACE                 FINER
## DEBUG                 FINE (includes CONFIG)
## INFO                  INFO
## WARN/ERROR            WARNING
## FATAL                 SEVERE
## OFF                   OFF

log4j.rootLogger=WARN, geoserverlogfile, stdout

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{dd MMM HH:mm:ss} %p [%c{2}] - %m%n


log4j.appender.geoserverlogfile=org.apache.log4j.RollingFileAppender
# Keep three backup files.
log4j.appender.geoserverlogfile.MaxBackupIndex=3
# Pattern to output: date priority [category] - message
log4j.appender.geoserverlogfile.layout=org.apache.log4j.PatternLayout
log4j.appender.geoserverlogfile.layout.ConversionPattern=%d %p [%c{2}] - %m%n

log4j.category.log4j=FATAL

log4j.category.org.geotools=WARN
log4j.category.org.geotools.factory=WARN
log4j.category.org.geoserver=WARN
log4j.category.org.vfny.geoserver=WARN

log4j.category.org.springframework=WARN

log4j.category.org.geowebcache=ERROR
 No newline at end of file

scripts/context.xml

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
<Context>
  <Resources allowLinking="true" />
</Context>
 No newline at end of file

scripts/docker-entrypoint.sh

deleted100755 → 0
+0 −19
Original line number Diff line number Diff line
#!/bin/bash

if [ -z "$(ls -A ${GEOSERVER_DATA_DIR})" ]
then
	echo "Move data from ${GEOSERVER_HOME}/data/ to ${GEOSERVER_DATA_DIR}/"
	mkdir -p "${GEOSERVER_DATA_DIR}/logs"
	mv /*LOGGING.properties "${GEOSERVER_DATA_DIR}/logs/DEFAULT_LOGGING.properties"
	ls -la "${GEOSERVER_DATA_DIR}/logs"
	mv "${GEOSERVER_HOME}/data/"* "${GEOSERVER_DATA_DIR}/"
fi

export JAVA_OPTS="${JAVA_OPTS} ${GEOSERVER_OPTS} -DGEOSERVER_LOG_LOCATION=${GEOSERVER_LOG_LOCATION}"

if [ "${ROLE}" == "master" ]
then
	/manage-slaves.sh & disown
fi

exec "$@"
−60.5 KiB

File deleted.

scripts/libs/jai/jai_codec.jar

deleted100644 → 0
−209 KiB

File deleted.

Loading