diff options
-rwxr-xr-x | client/engine/PostConf.lib | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/client/engine/PostConf.lib b/client/engine/PostConf.lib index 1f04532f..4e07f5a0 100755 --- a/client/engine/PostConf.lib +++ b/client/engine/PostConf.lib @@ -22,7 +22,8 @@ #@return (nada) #@date 2014-10-27 #*/ ## -function ogCleanOs { +function ogCleanOs () +{ # Si se solicita, mostrar ayuda. if [ "$*" == "help" ]; then @@ -38,7 +39,7 @@ case "$(ogGetOsType $1 $2)" in Linux) # Borramos los ficheros de dispositivos y los temporales. ogCleanLinuxDevices $1 $2 - rm -rf $(ogMount $1 $2)/tmp/* + rm -rf $(ogMount $1 $2)/tmp/* #*/ Comentario Doxygen ;; Windows) # Borrar ficheros de hibernaciĆ³n y paginaciĆ³n de Windows. @@ -314,6 +315,10 @@ Set objComputer = GetObject("winmgmts:{impersonationLevel=Impersonate}!\\\" & _ ReturnValue = objComputer.JoinDomainOrWorkGroup(strDomain, strPassword, _ strDomain & "\" & strUser, NULL, JOIN_DOMAIN + ACCT_CREATE) EOF + +#*/ " (comentario Doxygen) + + } |