mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 21:21:31 +00:00
Open zenmap.exe.log in a writable location. Fixes #345
This commit is contained in:
27
zenmap/install_scripts/windows/boot_script.py
Normal file
27
zenmap/install_scripts/windows/boot_script.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Custom py2exe boot script
|
||||
|
||||
# This runs after py2exe's boot_common.py. That file overrides sys.stderr and
|
||||
# sys.stdout to write to a logfile and a black hole, respectively. The location
|
||||
# for the stderr logfile is sys.executable + '.log', though, which is not
|
||||
# usually writable. We'll change it here to write to some other writable path.
|
||||
|
||||
|
||||
import sys
|
||||
import os
|
||||
import os.path
|
||||
|
||||
|
||||
#sys.stderr.write("Enter boot_script\n")
|
||||
# Only do this if py2exe installed its Stderr object
|
||||
if sys.stderr.__class__.__name__ == "Stderr":
|
||||
logdir = os.environ.get("LOCALAPPDATA",
|
||||
os.environ.get("APPDATA",
|
||||
os.environ.get("TEMP", "")))
|
||||
|
||||
if sys.stderr._file is not None:
|
||||
sys.stderr._file.close()
|
||||
sys.stderr._file = open(os.path.join(logdir, "zenmap.exe.log"), 'a')
|
||||
|
||||
|
||||
del os
|
||||
del sys
|
||||
@@ -604,7 +604,8 @@ if 'py2exe' in sys.argv:
|
||||
"includes": ["pango", "atk", "gobject", "gio", "pickle", "bz2",
|
||||
"encodings", "encodings.*", "cairo", "pangocairo"],
|
||||
"dll_excludes": ["USP10.dll", "NSI.dll", "MSIMG32.dll",
|
||||
"DNSAPI.dll"]
|
||||
"DNSAPI.dll"],
|
||||
"custom_boot_script": "install_scripts/windows/boot_script.py",
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user