diff options
author | ramon <ramongomez@us.es> | 2012-12-14 13:33:06 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2012-12-14 13:33:06 +0000 |
commit | 066fa01256cb975f1c351fff647b09c106b177b5 (patch) | |
tree | a5be986d2fea0b45219d169f2a2d658e19bbe262 /client/engine/FileSystem.lib | |
parent | 8e29877647e7a77b85b2a01bd96d946220f49926 (diff) |
Versión 1.0.5: Desmontar usando {{{umount}}} en función {{{ogFormatFs}}}.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@3471 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client/engine/FileSystem.lib')
-rwxr-xr-x | client/engine/FileSystem.lib | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/client/engine/FileSystem.lib b/client/engine/FileSystem.lib index 913ce41c..3f97b29f 100755 --- a/client/engine/FileSystem.lib +++ b/client/engine/FileSystem.lib @@ -199,9 +199,12 @@ esac #@version 0.9 - Primera versión para OpenGnSys. #@author Ramon Gomez, ETSII Universidad de Sevilla #@date 2009-10-08 -#@version 1.0.4 - Solucionado error cuando no se detecta tipo de sistema de ficheros pero si se indica +#@version 1.0.4 - Solucionado error cuando no se detecta tipo de sistema de ficheros pero si se indica. #@author Universidad de Huelva #@date 2012-04-11 +#@version 1.0.5 - Comprobar errores al inicio y desmontar antes de formatear. +#@author Universidad de Huelva +#@date 2012-12-14 #*/ ## function ogFormatFs () { @@ -304,7 +307,7 @@ fi # Formatear en modo uso exclusivo (desmontar siempre). ogLock $1 $2 trap "ogUnlock $1 $2" 1 2 3 6 9 -ogUnmount $1 $2 +umount $PART eval $PROG $PARAMS $PART 2>/dev/null ERRCODE=$? case $ERRCODE in |