[Greater-commits] r3630 - trunk/packaging

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Jul 21 11:01:39 CEST 2011


Author: aheinecke
Date: 2011-07-21 11:01:39 +0200 (Thu, 21 Jul 2011)
New Revision: 3630

Modified:
   trunk/packaging/greater-installer.nsi
Log:
Remove python before postgres in uninstallation to make sure all pyhton
processes are closed


Modified: trunk/packaging/greater-installer.nsi
===================================================================
--- trunk/packaging/greater-installer.nsi	2011-07-21 08:52:38 UTC (rev 3629)
+++ trunk/packaging/greater-installer.nsi	2011-07-21 09:01:39 UTC (rev 3630)
@@ -380,6 +380,15 @@
 ;--------------------------------
 ;Uninstaller
 
+Section "un.Python"
+   Banner::show /NOUNLOAD /set 76 "Uninstalling Python..."
+   SetOutPath "$TEMP" 
+   File "python-2.7.2.msi"
+   ExecWait '"msiexec" /uninstall $TEMP\python-2.7.2.msi'
+   Delete "$TEMP\python-2.7.2.msi"
+   Banner::destroy 
+SectionEnd
+
 Section "un.PostgreSQL" UnSecPostgreSQL
    Banner::show /NOUNLOAD /set 76 "Uninstalling PostgreSQL..."
    ; TODO find path from registry and uninstall
@@ -395,15 +404,6 @@
    no:
 SectionEnd
 
-Section "un.Python"
-   Banner::show /NOUNLOAD /set 76 "Uninstalling Python..."
-   SetOutPath "$TEMP" 
-   File "python-2.7.2.msi"
-   ExecWait '"msiexec" /uninstall $TEMP\python-2.7.2.msi'
-   Delete "$TEMP\python-2.7.2.msi"
-   Banner::destroy 
-SectionEnd
-
 Section "un."
 
   !include ${client-un}



More information about the Greater-commits mailing list