HI,

Luis Gonzalez C. wrote:
Dear Friends

I am trying to configure the StarOffice (swriter, scalc and sdraw) for use
for my SunRays users in CAM Mode

What is CAM mode?

I have installed StarOffice in Multiuser mode, but when any user tries to
use the applications, the Installer is launched again in each session.
I assume that you have installed using the /net switch!


Does somebody how to configure a script for start the Staroffice's applications without starts the installer in each session.

You could add a wrapper in a comming PATH, I use /opt/system/bin for platform indepent wrappers.

Something like the wrapper soffice below.

-----

#!/bin/sh -f
#//---------------------------------------------------------------------------
#// $Source: /opt/system/admin/site_adaption_wrappers/openoffice/RCS/soffice,v $
#// $Author: sysadm $
#// $Date: 2004/04/20 17:02:48 $
#// $Revision: 1.11 $
#// Created : 2001/11/21
#//---------------------------------------------------------------------------


# No not edit this file here, the original file is in /opt/system/admin/openoffice
# then do a make to distribute the files


platform=`uname -p`
machine=`uname -m`
system=`uname -s`
version=1.1.1
OFFICE_NAME=staroffice
OFFICE_NAME=OpenOffice
OFFICE_HOME=/opt/tools/applications/openoffice/rel_$version
if [ -d $HOME/$OFFICE_NAME.org$version ]; then
echo "Starting $OFFICE_NAME $version"
exec ${HOME}/$OFFICE_NAME.org$version/soffice $1 $2 $3 &
else
echo "Installing $OFFICE_NAME ${version} for you."
echo "Please select YES on all queries to install unless the questions is to remove a newer file with a older file when
prompted!"
echo ${OFFICE_HOME}/setup
exec ${OFFICE_HOME}/setup &
fi


-----

/michael

--
I may have invented it, but Bill made it famous
quote from David Bradley the inventor of CtrlAltDelete

email: [EMAIL PROTECTED], mobil:+46702715298
_______________________________________________
SunRay-Users mailing list
[EMAIL PROTECTED]
http://www.filibeto.org/mailman/listinfo/sunray-users

Reply via email to