diff options
author | ramon <ramongomez@us.es> | 2010-02-09 18:04:18 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2010-02-09 18:04:18 +0000 |
commit | 4edc0b0138628b28eda11a62a62ef616c3e6ef50 (patch) | |
tree | c4dba56c742929d9409014a74a5441c5c9067076 | |
parent | d725a41aa9f176c386549cec3f3692b45ae2f5e0 (diff) |
Solución ticket:98 en trunk; correcciones varias; engine-1.0: arranque service tracker.
git-svn-id: https://opengnsys.es/svn/trunk@749 a21b9725-9963-47de-94b9-378ad31fedc9
-rwxr-xr-x | client/engine/File.lib | 12 | ||||
-rw-r--r-- | client/nfsexport/etc/lang.es_ES.conf | 4 |
2 files changed, 12 insertions, 4 deletions
diff --git a/client/engine/File.lib b/client/engine/File.lib index 087504bb..6156e6ed 100755 --- a/client/engine/File.lib +++ b/client/engine/File.lib @@ -108,7 +108,7 @@ local MNTDIR FILE PREVFILE FILEPATH CURRENTDIR # Si se solicita, mostrar ayuda. if [ "$*" == "help" ]; then - ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" \ + ogHelp "$FUNCNAME" "$FUNCNAME [ str_repo | int_ndisk int_npartition ] path_filepath" \ "$FUNCNAME \"/mnt/sda1/windows/system32\" ==> /mnt/sda1/WINDOWS/System32" \ "$FUNCNAME REPO /etc/fstab ==> /opt/opengnsys/images/etc/fstab" \ "$FUNCNAME 1 1 \"/windows/system32\" ==> /mnt/sda1/WINDOWS/System32" @@ -122,7 +122,7 @@ case $# in REPO|repo) FILE="$OGIMG/$2" ;; CACHE|cache) - FILE="$OGCAC/$OGIMG/$2" ;; + FILE="$(ogMountCache)/$OGIMG/$2" ;; CDROM|cdrom) FILE="$(ogMountCdrom)/$2" ;; *) ogRaiseError $OG_ERR_FORMAT @@ -164,6 +164,14 @@ cd $CURRENTDIR function ogGetParentPath () { local PARENT +if [ "$*" == "help" ]; then + ogHelp "$FUNCNAME" "$FUNCNAME [ str_repo | int_ndisk int_npartition ] path_filepath" \ + "$FUNCNAME \"/mnt/sda1/windows/system32\" ==> /mnt/sda1/WINDOWS" \ + "$FUNCNAME REPO /etc/fstab ==> /opt/opengnsys/images/etc" \ + "$FUNCNAME 1 1 \"/windows/system32\" ==> /mnt/sda1/WINDOWS" + return +fi + case $# in 1) PARENT=$(dirname "$1") ;; 2) PARENT="$1 $(dirname "/$2")" ;; diff --git a/client/nfsexport/etc/lang.es_ES.conf b/client/nfsexport/etc/lang.es_ES.conf index 0686033f..29ffc175 100644 --- a/client/nfsexport/etc/lang.es_ES.conf +++ b/client/nfsexport/etc/lang.es_ES.conf @@ -55,11 +55,11 @@ MSG_HELP_ogGetImageSize="Devuelve el tamaño de una imagen de sistema." MSG_HELP_ogGetMountPoint="Devuelve el directorio donde está montado un sistema de archivos local." MSG_HELP_ogGetOsType="Devuelve el tipo de un sistema operativo instalado." MSG_HELP_ogGetOsVersion="Devuelve el tipo y la versión de un sistema operativo instalado." -MSG_HELP_ogGetParentPath=$"Devuelve el camino completo del directorio padre de un fichero de sistema OpenGNsys." +MSG_HELP_ogGetParentPath=$"Devuelve el camino completo del directorio padre de un fichero de sistema OpenGnSys." MSG_HELP_ogGetPartitionActive="Indica cual es la partición marcada como activa en un disco." MSG_HELP_ogGetPartitionId="Devuelve el identificador de tipo de una partición." MSG_HELP_ogGetPartitionSize="Devuelve el tamaño de una partición." -MSG_HELP_ogGetPath="Devuelve el camino completo de un fichero de sistema OpenGNsys." +MSG_HELP_ogGetPath="Devuelve el camino completo de un fichero de sistema OpenGnSys." MSG_HELP_ogGetRegistryValue="Devuelve el dato de un valor del registro de Windows." MSG_HELP_ogGetWindowsName="Devuelve el nombre del cliente guardado en el registro de Windows." MSG_HELP_ogHelp="Muestra mensajes de ayudas para las funciones." |