summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2016-08-22 10:47:42 +0000
committerramon <ramongomez@us.es>2016-08-22 10:47:42 +0000
commit8792fedc02bfa3e9dee8b9b09be31c7fc8ee38a6 (patch)
tree824145e2d55252968af92b1a6724f5c55feebacb /client
parent930dbb8de6efa89c776a576202380ab31a934dab (diff)
#718: Corregir errata en r4996 al detectar el ejecutable del cliente de Windows.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@4997 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client')
-rwxr-xr-xclient/engine/PostConf.lib5
1 files changed, 3 insertions, 2 deletions
diff --git a/client/engine/PostConf.lib b/client/engine/PostConf.lib
index e2c63aad..f2215835 100755
--- a/client/engine/PostConf.lib
+++ b/client/engine/PostConf.lib
@@ -678,9 +678,10 @@ fi
MNTDIR=$(ogMount $1 $2) || return $?
# Crear órdenes para desinstalar servicio y borrar ejecutable del cliente.
-if [ -n "$(ogGetPath $MNTDIR/windows/ogAdmWinClient)" -o -n "$(ogGetPath $MNTDIR/winnt/ogAdmWinClient)" ]; then
+if [ -n "$(ogGetPath $MNTDIR/windows/ogAdmWinClient.exe)" -o -n "$(ogGetPath $MNTDIR/winnt/ogAdmWinClient.exe)" ]; then
ogAddCmd $1 $2 $3 'ogAdmWinClient -remove'
- ogAddCmd $1 $2 $3 'DEL C:\Windows\ogAdmWinClient.exe C:\Winnt\ogAdmWinClient.exe'
+ ogAddCmd $1 $2 $3 'DEL C:\Windows\ogAdmWinClient.exe'
+ ogAddCmd $1 $2 $3 'DEL C:\Winnt\ogAdmWinClient.exe'
fi
}