diff --git a/branches/ucs-3.2/ucs-3.2-0/services/univention-net-installer/univention-net-installer-daemon b/branches/ucs-3.2/ucs-3.2-0/services/univention-net-installer/univention-net-installer-daemon index 778753a..1b96bb4 100755 --- a/branches/ucs-3.2/ucs-3.2-0/services/univention-net-installer/univention-net-installer-daemon +++ b/branches/ucs-3.2/ucs-3.2-0/services/univention-net-installer/univention-net-installer-daemon @@ -101,11 +101,10 @@ def processor(options, data_queue): process(data) def listener(options, data_queue): - local_host_address = socket.gethostbyname(socket.gethostname()) size = 1024 # max hostname length s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) - s.bind((local_host_address, options.port, )) + s.bind(("", options.port, )) s.listen(1) while True: (client, _, ) = s.accept()