Index: trunk/ippdor/deployment/Deployment.py
===================================================================
--- trunk/ippdor/deployment/Deployment.py	(revision 32897)
+++ trunk/ippdor/deployment/Deployment.py	(revision 32904)
@@ -96,7 +96,28 @@
         """
         Check different elements
-        TODO: add checks for IppSite definition
         """
         Deployment.logger.info('Checking Condor-IPP Softwares Configuration')
+        # Configuration
+        from IppSite import IppSite, Gpc1
+        Deployment.logger.info('Checking definition of IppSite.SVN_SOURCE_URL: %s' 
+                               % IppSite.SVN_SOURCE_URL)
+        Deployment.logger.info('Checking definition of IppSite.TARGET_DIRECTORY: %s' 
+                               % IppSite.TARGET_DIRECTORY)
+        Deployment.logger.info('Checking definition of IppSite.TARGET_BINARY_DIRECTORY: %s' 
+                               % IppSite.TARGET_BINARY_DIRECTORY)
+        Deployment.logger.info('Checking definition of IppSite.LOCAL_TMP_DIR: %s' 
+                               % IppSite.LOCAL_TMP_DIR)
+        Deployment.logger.info('Checking definition of IppSite.NFS_TMP_DIR: %s' 
+                               % IppSite.NFS_TMP_DIR)
+        Deployment.logger.info('Checking definition of IppSite.IPP_BIN_PATH: %s' 
+                               % IppSite.IPP_BIN_PATH)
+        Deployment.logger.info('Checking definition of Gpc1.HOST: %s' 
+                               % Gpc1.HOST)
+        Deployment.logger.info('Checking definition of Gpc1.NAME: %s' 
+                               % Gpc1.NAME)
+        Deployment.logger.info('Checking definition of Gpc1.USER: %s' 
+                               % Gpc1.USER)
+        Deployment.logger.info('Checking definition of Gpc1.PASSWORD: %s' 
+                               % Gpc1.PASSWORD)
         # self.target_directory
         Deployment.logger.info('... Checking write permission to %s' % self.target_directory)
@@ -165,6 +186,6 @@
                     os.makedirs('%s/%s' % (self.target_directory,
                                            path_elements[0]))
-                except OSError, e:
-                    Deployment.logger.warn(e)
+                except OSError, exc:
+                    Deployment.logger.warn(exc)
                     Deployment.logger.info('Ignored')
         for filename in Deployment.CLASSES_FILENAMES:
