Univention Bugzilla – Attachment 5503 Details for
Bug 32107
Handle unexpected join script file names more gracefully
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
32107.patch
32107.patch (text/plain), 768 bytes, created by
Florian Best
on 2013-10-08 11:28:18 CEST
(
hide
)
Description:
32107.patch
Filename:
MIME Type:
Creator:
Florian Best
Created:
2013-10-08 11:28:18 CEST
Size:
768 bytes
patch
obsolete
>Index: umc/python/join/__init__.py >=================================================================== >--- umc/python/join/__init__.py (Revision 44789) >+++ umc/python/join/__init__.py (Arbeitskopie) >@@ -285,8 +285,12 @@ > match = RE_NOT_CONFIGURED.match(line) > if match: > name = match.groups()[0] >- files[name]['configured'] = False >- files[name]['status'] = '0:%s' % (files[name]['prio']) >+ if name in files: >+ files[name]['configured'] = False >+ files[name]['status'] = '0:%s' % (files[name]['prio']) >+ else: >+ # The joinscripts does not exists in the filesystem or has a invalid name >+ MODULE.error('not existing join script or join script with invalid name meantioned in status file: %r' % (name)) > > return files.values() >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 32107
:
5341
| 5503