diff --git a/base/univention-base-files/conffiles/etc/ssh/sshd_config b/base/univention-base-files/conffiles/etc/ssh/sshd_config index 010162eb38..e5df74158e 100644 --- a/base/univention-base-files/conffiles/etc/ssh/sshd_config +++ b/base/univention-base-files/conffiles/etc/ssh/sshd_config @@ -131,8 +131,8 @@ print '# some PAM modules and threads)' if configRegistry.get('sshd/challengeresponse'): print "ChallengeResponseAuthentication %s" % configRegistry.get('sshd/challengeresponse') if configRegistry.get('sshd/ChallengeResponseAuthentication'): - print >> sys.stderr, 'The value for ChallengeResponseAuthentication is ' \ - 'set twice via sshd/ChallengeResponseAuthentication and sshd/challengeresponse' + print >> sys.stderr, 'WARNING: The value for ChallengeResponseAuthentication is ' \ + 'set twice: via sshd/ChallengeResponseAuthentication and sshd/challengeresponse' else: print "ChallengeResponseAuthentication %s" % configRegistry.get('sshd/ChallengeResponseAuthentication', 'yes') print '' @@ -195,22 +195,22 @@ else: if configRegistry.get('sshd/xforwarding'): print "X11Forwarding %s" % configRegistry.get('sshd/xforwarding') if configRegistry.get('sshd/X11Forwarding'): - print >> sys.stderr, 'The value for X11Forwarding is ' \ - 'set twice via sshd/X11Forwarding and sshd/xforwarding' + print >> sys.stderr, 'WARNING: The value for X11Forwarding is ' \ + 'set twice: via sshd/X11Forwarding and sshd/xforwarding' else: print "X11Forwarding %s" % configRegistry.get('sshd/X11Forwarding', 'no') if configRegistry.get('sshd/xdisplayoffset'): print "X11DisplayOffset %s" % configRegistry.get('sshd/xdisplayoffset') if configRegistry.get('sshd/X11DisplayOffset'): - print >> sys.stderr, 'The value for X11DisplayOffset is ' \ - 'set twice via sshd/X11DisplayOffset and sshd/xdisplayoffset' + print >> sys.stderr, 'WARNING: The value for X11DisplayOffset is ' \ + 'set twice: via sshd/X11DisplayOffset and sshd/xdisplayoffset' elif configRegistry.get('sshd/X11DisplayOffset'): print "X11DisplayOffset %s" % configRegistry.get('sshd/X11DisplayOffset') if configRegistry.get('sshd/xuselocalhost'): print "X11UseLocalHost %s" % configRegistry.get('sshd/xuselocalhost') if configRegistry.get('sshd/X11UseLocalHost'): - print >> sys.stderr, 'The value for X11UseLocalHost is ' \ - 'set twice via sshd/X11UseLocalHost and sshd/xuselocalhost' + print >> sys.stderr, 'WARNING: The value for X11UseLocalHost is ' \ + 'set twice: via sshd/X11UseLocalHost and sshd/xuselocalhost' elif configRegistry.get('sshd/X11UseLocalHost'): print "X11UseLocalHost %s" % configRegistry.get('sshd/X11UseLocalHost') print '' @@ -277,8 +277,8 @@ if configRegistry.get('sshd/banner'): print '# no default banner path' print "Banner %s" % configRegistry.get('sshd/banner') if configRegistry.get('sshd/Banner'): - print >> sys.stderr, 'The value for Banner is ' \ - 'set twice via sshd/Banner and sshd/banner' + print >> sys.stderr, 'WARNING: The value for Banner is ' \ + 'set twice: via sshd/Banner and sshd/banner' elif configRegistry.get('sshd/Banner'): print '' print '# no default banner path'