From dac58e9e0041caa655395f70434c5620b3e6c3af Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Fri, 20 Nov 2015 18:15:51 +0100 Subject: [PATCH] committing changes in /etc after emerge run Package changes: --- conf.d/hsqldb | 126 --------------------------------------- env.d/35hsqldb | 1 - hsqldb/server.properties | 20 ------- hsqldb/sqltool.rc | 20 ------- init.d/hsqldb | 20 ------- 5 files changed, 187 deletions(-) delete mode 100644 conf.d/hsqldb delete mode 100644 env.d/35hsqldb delete mode 100644 hsqldb/server.properties delete mode 100644 hsqldb/sqltool.rc delete mode 100755 init.d/hsqldb diff --git a/conf.d/hsqldb b/conf.d/hsqldb deleted file mode 100644 index 47bb5264..00000000 --- a/conf.d/hsqldb +++ /dev/null @@ -1,126 +0,0 @@ -# $Id: sample-hsqldb.cfg,v 1.15 2005/07/23 19:54:17 unsaved Exp $ - -# Sample configuration file for HSQLDB database server. -# See the "UNIX Quick Start" chapter of the Hsqldb User Guide. - -# N.b.!!!! You must place this in the right location for your type of UNIX. -# See the init script "hsqldb" to see where this must be placed and -# what it should be renamed to. - -# This file is "sourced" by a Bourne shell, so use Bourne shell syntax. - -# This file WILL NOT WORK until you set (at least) the non-commented -# variables to the appropriate values for your system. -# Life will be easier if you avoid all filepaths with spaces or any other -# funny characters. Don't ask for support if you ignore this advice. - -# Thanks to Meikel Bisping for his contributions. -- Blaine - -JAVA_EXECUTABLE=/usr/bin/java - -# Unless you copied a hsqldb.jar file from another system, this typically -# resides at $HSQLDB_HOME/lib/hsqldb.jar, where $HSQLDB_HOME is your HSQLDB -# software base directory. -HSQLDB_JAR_PATH=/usr/share/hsqldb/lib/hsqldb.jar - -# Where the file "server.properties" resides. -SERVER_HOME=/var/lib/hsqldb - -# What UNIX user the server will run as. -# (The shutdown client is always run as root or the invoker of the init script). -# Runs as root by default, but you should take the time to set database file -# ownerships to another user and set that user name here. -HSQLDB_OWNER=hsqldb - -# The HSQLDB jar file specified in HSQLDB_JAR_PATH above will automatically -# be in the class path. This arg specifies additional classpath elements. -# To embed your own application, add your jar file(s) or class base -# directories here, and add your main class to the INVOC_ADDL_ARGS setting -# below. -#SERVER_ADDL_CLASSPATH=/usr/local/dist/currencybank.jar - -# We require all Server/WebServer instances to be accessible within -# $MAX_START_SECS from when the Server/WebServer is started. -# Defaults to 60. -# Raise this is you are running lots of DB instances or have a slow server. -#MAX_START_SECS=200 - -# Time to allow for JVM to die after all HSQLDB instances stopped. -# Defaults to 1. -#MAX_TERMINATE_SECS=0 - -# These are "urlid" values from a SqlTool authentication file -# ** IN ADDITION TO THOSE IN YOUR server.properties OR webserver.properties ** -# file. All server.urlid.X values from your properties file will automatically -# be started/stopped/tested. $SHUTDOWN_URLIDS is for additional urlids which -# will stopped. (Therefore, most users will not set this at all). -# Separate multiple values with white space. NO OTHER SPECIAL CHARACTERS! -# Make sure to quote the entire value if it contains white space separator(s). -# Defaults to none (i.e., only urlids set in properties file will be stopped). -#SHUTDOWN_URLIDS='sa mygms' - -# SqlTool authentication file used only for shutdown. -# The default value will be sqltool.rc in root's home directory, since it is -# root who runs the init script. -# (See the SqlTool chapter of the HSQLDB User Guide if you don't understand -# this). -AUTH_FILE=${SERVER_HOME}/sqltool.rc - -# Set this to either 'WebServer' or 'Server'. Defaults to Server. -# The JVM that is started can invoke many classes (see the following item -# about that), but this is the Server that is used (1) to check status, -# (2) to shut down the JVM, (3) to get urlids for #1 from the -# server's server/webserver.properties file. -#TARGET_CLASS=WebServer -# Note that you don't specify the org.hsqldb package, since you have no -# choice in the matter (you can only run org.hsqldb.Server or -# org.hsqldb.WebServer). If you specify additional classes with -# INVOC_ADDL_ARGS (described next), you do need to specify the -# full class name with package name. - -# This is where you specify exactly what your HSQLDB JVM will run. -# The class org.hsqldb.util.MainInvoker will run the TARGET_CLASS -# specified above with any arguments supplied here + any other classes -# and arguments. Every additional class (in addition to the TARGET_CLASS) -# must be preceded with an empty string, so that MainInvoker will know -# you are giving a class name. MainInvoker will invoke the normal -# static main(String[]) method of each such class. -# By default, MainInvoker will just run TARGET_CLASS with no args. -# Example that runs just the TARGET_CLASS with the specified arguments: -#INVOC_ADDL_ARGS='-silent false' -# Example that runs the TARGET_CLASS plus a WebServer: -#INVOC_ADDL_ARGS='"" org.hsqldb.WebServer' -# Note the empty string preceding the class name. -# Example that starts TARGET_CLASS with an argument + a WebServer + -# your own application with its args (i.e., the HSQLDB Servers are -# "embedded" in your application). (Set SERVER_ADDL_CLASSPATH too).: -#INVOC_ADDL_ARGS='-silent false "" org.hsqldb.WebServer "" com.acme.Stone --env prod localhost' -# Example to run a non-TLS server in same JVM with a TLS server. In this -# case, TARGET_CLASS is Server which will run in TLS mode by virtue of -# setting TLS_KEYSTORE and TLS_PASSWORD above. The "additional" Server -# here overrides the 'tls' and 'port' settings: -#INVOC_ADDL_ARGS="'' org.hsqldb.Server -port 9002 -tls false" -# Note that you use nested quotes to group arguments and to specify the -# empty-string delimiter. - -# For TLS encryption for your Server, set these two variables. -# N.b.: If you set these, then make this file unreadable to non-root users!!!! -# See the TLS chapter of the HSQLDB User Guide, paying attention to the -# security warning(s). -# If you are running with a private server cert, then you will also need to -# set "truststore" in the your SqlTool config file (location is set by the -# AUTH_FILE variable in this file, or it must be at the default location for -# HSQLDB_OWNER). -#TLS_KEYSTORE=/path/to/jks/server.store -#TLS_PASSWORD=password - -# Any JVM args for the invocation of the JDBC client used to verify DB -# instances and to shut them down (SqlToolSprayer). -# This example specifies the location of a private trust store for TLS -# encryption. -# For multiple args, put quotes around entire value. -#CLIENT_JVMARGS=-Djavax.net.debug=ssl - -# Any JVM args for the server. -# For multiple args, put quotes around entire value. -#SERVER_JVMARGS=-Xmx512m diff --git a/env.d/35hsqldb b/env.d/35hsqldb deleted file mode 100644 index 7ea66e04..00000000 --- a/env.d/35hsqldb +++ /dev/null @@ -1 +0,0 @@ -CONFIG_PROTECT="/var/lib/hsqldb" diff --git a/hsqldb/server.properties b/hsqldb/server.properties deleted file mode 100644 index 4827d1cb..00000000 --- a/hsqldb/server.properties +++ /dev/null @@ -1,20 +0,0 @@ -# Hsqldb Server cfg file. -# See the UNIX Quick Start and the Advanced Topics chapters -# of the Hsqldb User Guide. - -server.database.0=file:/var/lib/hsqldb/db1 -server.urlid.0=localhost - -# Warning! -# When running hsqldb in Server mode, for each additional database -# the server.urlid.X entry must have a proper corresponding urlid -# section in the 'sqltool.rc' file. -# Otherwise you may have problems with shutting down the server. -# -# Note that each server can serve only up to 10 different -# databases simultaneously (with consecutive {0-9} suffixes). - -# An example of additional database. -#server.database.1=file:/var/lib/hsqldb/newdb/newdb -#server.dbname.1=newdb -#server.urlid.1=newdb diff --git a/hsqldb/sqltool.rc b/hsqldb/sqltool.rc deleted file mode 100644 index 9284be44..00000000 --- a/hsqldb/sqltool.rc +++ /dev/null @@ -1,20 +0,0 @@ -# $Id sqltool.rc,v 1.11 2004/07/18 21:34:35 unsaved Exp $ - -# This is a sample SqlTool configuration file, a.k.a. rc file. - -# This is for a hsqldb Server running with default settings on your local -# computer (and for which you have not changed the password for "sa"). -urlid localhost -url jdbc:hsqldb:hsql://localhost -username sa -password - -# Each urlid section in this file corresponds to one of the -# server.urlid.X entries in the 'server.properties' file. -# This is required by the hsqldb init script. - -# An example of additional database. -#urlid newdb -#url jdbc:hsqldb:hsql://localhost/newdb -#username sa -#password diff --git a/init.d/hsqldb b/init.d/hsqldb deleted file mode 100755 index 09553ea7..00000000 --- a/init.d/hsqldb +++ /dev/null @@ -1,20 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/hsqldb/files/hsqldb,v 1.2 2007/12/19 21:58:05 caster Exp $ - -depend() { - use net -} - -start() { - ebegin "Starting HSQL Database" - hsqldb_enable=yes /var/lib/hsqldb/bin/hsqldb start - eend $? -} - -stop() { - ebegin "Stopping HSQL Database" - hsqldb_enable=yes /var/lib/hsqldb/bin/hsqldb stop - eend $? -} -- 2.39.5