Add better error msg

This commit is contained in:
Meatballs 2013-06-16 10:27:08 +01:00
parent caa326774c
commit 2c98507f1e

View File

@ -106,7 +106,7 @@ class Xp_cmdshell:
if output == "1":
logger.info("xp_cmdshell extended procedure is usable")
elif isNoneValue(output):
elif isNoneValue(output) and conf.dbmsCred:
errMsg = "it seems that the temporary directory ('%s') used for " % self.getRemoteTempPath()
errMsg += "storing console output within the back-end file system "
errMsg += "does not have writing permissions for the DBMS process. "
@ -114,6 +114,8 @@ class Xp_cmdshell:
errMsg += "--tmp-path switch or you will not be able to retrieve "
errMsg += "the commands output"
logger.error(errMsg)
elif isNoneValue(output):
logger.error("unable to retrieve xp_cmdshell output")
else:
logger.info("xp_cmdshell extended procedure is usable")