diff options
author | adv <adv@uma.es> | 2018-07-05 17:24:08 +0200 |
---|---|---|
committer | adv <adv@uma.es> | 2018-07-05 17:24:08 +0200 |
commit | 05bbb82455a062a2ebf22d6aaaa62303c58bcae0 (patch) | |
tree | bbf2a0fce7ff3b06904cdd98dd7d38b64ee480f9 | |
parent | 5868bfe7d45c256c1274bd2d28e66681770619b4 (diff) |
#853 Adapting PostConf.lib library for doxygen
-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) + + } |