[Bug 1750577] [NEW] Admin cleartext password hashing fails

2018-02-20 Thread volinthius
Public bug reported:

When using cleartext password in /etc/couchdb/local.ini in admins
sections CouchDB fails with:

Apache CouchDB 1.6.0 (LogLevel=info) is starting.
{"init terminating in 
do_boot",{{badmatch,{error,{bad_return,{{couch_app,start,[normal,["/etc/couchdb/default.ini","/etc/couchdb/local.ini"]]},{'EXIT',{{badmatch,{error,{shutdown,{failed_to_start_child,couch_primary_services,{shutdown,{failed_to_start_child,couch_server,{function_clause,[{couch_passwords,hash_admin_password,["ABB2A1AB4559241F16EC278D7837F5"],[{file,"couch_passwords.erl"},{line,30}]},{couch_server,'-hash_admin_passwords/1-fun-0-',2,[{file,"couch_server.erl"},{line,148}]},{lists,foreach,2,[{file,"lists.erl"},{line,1337}]},{couch_server,init,1,[{file,"couch_server.erl"},{line,172}]},{gen_server,init_it,6,[{file,"gen_server.erl"},{line,328}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,240}]}]}}},[{couch_server_sup,start_server,1,[{file,"couch_server_sup.erl"},{line,98}]},{application_master,start_it_old,4,[{file,"application_master.erl"},{line,273}]}]}},[{couch,start,0,[{file,"couch.erl"},{line,18}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

Crash dump is being written to: erl_crash.dump...init terminating in
do_boot ()

This is most likely related to this fix:

https://github.com/apache/couchdb/commit/ed825d362ff237981ef15e4a28e326c79bd1367f

ProblemType: Bug
Architecture: amd64
Date: 2018-02-20
DistroRelease: Ubuntu 16.04
Package: couchdb-bin 1.6.0-0ubuntu7

** Affects: couchdb (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: couchdb xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1750577

Title:
  Admin cleartext password hashing fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/couchdb/+bug/1750577/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1734918] Re: python-json-patch monkeypatching causes AttributeError with python-networkx

2017-12-16 Thread volinthius
** Patch added: "jsonpatch-remove-monkeypatching.diff"
   
https://bugs.launchpad.net/ubuntu/+source/python-json-patch/+bug/1734918/+attachment/5023324/+files/jsonpatch-remove-monkeypatching.diff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1734918

Title:
  python-json-patch monkeypatching causes AttributeError with python-
  networkx

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-json-patch/+bug/1734918/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1734918] [NEW] python-json-patch monkeypatching causes AttributeError with python-networkx

2017-11-28 Thread volinthius
Public bug reported:

On Ubuntu 14.04.5 LTS with:

- python 2.7.5-5ubuntu3
- python-json-patch 1.3-4
- python-networkx 1.8.1-0ubuntu3

Error can be triggered with the following example:

---

$ cat conflict1.py
import jsonpatch
from networkx.readwrite import json_graph

$ python conflict1.py
Traceback (most recent call last):
  File "conflict1.py", line 11, in 
from networkx.readwrite.json_graph.serialize import *
  File 
"/usr/lib/python2.7/dist-packages/networkx/readwrite/json_graph/__init__.py", 
line 10, in 
from networkx.readwrite.json_graph.serialize import *
  File 
"/usr/lib/python2.7/dist-packages/networkx/readwrite/json_graph/serialize.py", 
line 31, in 
update_wrapper(load,json.load)
  File "/usr/lib/python2.7/functools.py", line 33, in update_wrapper
setattr(wrapper, attr, getattr(wrapped, attr))
AttributeError: 'functools.partial' object has no attribute '__module__'

---

The error is reported and fixed in upstream [0] but the commit is after
Python 2.x support has been removed in commit
7079bdc7bf4be53f51fa30d790c32db83dd8c210. Please find proposed fix
attached.

[0] https://github.com/stefankoegl/python-json-patch/issues/37

** Affects: python-json-patch (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: trusty

** Description changed:

  On Ubuntu 14.04.5 LTS with:
  
  - python 2.7.5-5ubuntu3
  - python-json-patch 1.3-4
  - python-networkx 1.8.1-0ubuntu3
  
- Error can be triggered in the following example:
+ Error can be triggered with the following example:
  
  ---
  
  $ cat conflict1.py
  import jsonpatch
  from networkx.readwrite import json_graph
  
- $ python conflict1.py 
+ $ python conflict1.py
  Traceback (most recent call last):
-   File "conflict1.py", line 11, in 
- from networkx.readwrite.json_graph.serialize import *
-   File 
"/usr/lib/python2.7/dist-packages/networkx/readwrite/json_graph/__init__.py", 
line 10, in 
- from networkx.readwrite.json_graph.serialize import *
-   File 
"/usr/lib/python2.7/dist-packages/networkx/readwrite/json_graph/serialize.py", 
line 31, in 
- update_wrapper(load,json.load)
-   File "/usr/lib/python2.7/functools.py", line 33, in update_wrapper
- setattr(wrapper, attr, getattr(wrapped, attr))
+   File "conflict1.py", line 11, in 
+ from networkx.readwrite.json_graph.serialize import *
+   File 
"/usr/lib/python2.7/dist-packages/networkx/readwrite/json_graph/__init__.py", 
line 10, in 
+ from networkx.readwrite.json_graph.serialize import *
+   File 
"/usr/lib/python2.7/dist-packages/networkx/readwrite/json_graph/serialize.py", 
line 31, in 
+ update_wrapper(load,json.load)
+   File "/usr/lib/python2.7/functools.py", line 33, in update_wrapper
+ setattr(wrapper, attr, getattr(wrapped, attr))
  AttributeError: 'functools.partial' object has no attribute '__module__'
  
  ---
  
  The error is reported and fixed in upstream [0] but the commit is after
  Python 2.x support has been removed in commit
  7079bdc7bf4be53f51fa30d790c32db83dd8c210. Please find proposed fix
  attached.
  
  [0] https://github.com/stefankoegl/python-json-patch/issues/37

** Tags added: trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1734918

Title:
  python-json-patch monkeypatching causes AttributeError with python-
  networkx

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-json-patch/+bug/1734918/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 873114] Re: gi._glib.GError: Icon 'deb' not present in theme

2012-03-03 Thread volinthius
** Patch removed: apturl-deb-icon-lookup.patch
   
https://bugs.launchpad.net/ubuntu/+source/apturl/+bug/873114/+attachment/2802747/+files/apturl-deb-icon-lookup.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/873114

Title:
  gi._glib.GError: Icon 'deb' not present in theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apturl/+bug/873114/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 873114] Re: gi._glib.GError: Icon 'deb' not present in theme

2012-03-03 Thread volinthius
Removed the patch because the fix was invalid.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/873114

Title:
  gi._glib.GError: Icon 'deb' not present in theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apturl/+bug/873114/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 907384] Re: apturl just crashes

2012-03-02 Thread volinthius
I had this problem as well. Seems that by default only update-manager-
core is installed and the backend module in UpdateManager is provided by
update-manager. So the problem lies in dependencies of some package.
However once the correct package is installed bug #873114 emerges.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/907384

Title:
  Wrong dependency causes ImportError with apturl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apturl/+bug/907384/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 907384] Re: Wrong dependency causes ImportError with apturl

2012-03-02 Thread volinthius
** Summary changed:

- apturl just crashes
+ Wrong dependency causes ImportError with apturl

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/907384

Title:
  Wrong dependency causes ImportError with apturl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apturl/+bug/907384/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 873114] Re: gi._glib.GError: Icon 'deb' not present in theme

2012-03-02 Thread volinthius
Similar specs (11.10,  x86-64) and fixed this by using lookup_icon()
instead load_icon() in usr/lib/python2.7/dist-
packages/AptUrl/gtk/GtkUI.py. See attached patch for fix.

** Patch added: apturl-deb-icon-lookup.patch
   
https://bugs.launchpad.net/ubuntu/+source/apturl/+bug/873114/+attachment/2802747/+files/apturl-deb-icon-lookup.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/873114

Title:
  gi._glib.GError: Icon 'deb' not present in theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apturl/+bug/873114/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 874076] Re: lighttpd stalls when reading fragmented ssl requests

2012-02-15 Thread volinthius
I'm experiencing this bug also in Ubuntu 10.04. However it only exists
with Chromium. After patching the lighttpd the problem seemed to go
away.

Chromium is of version 16.0.912.77 (Developer Build 118311 Linux) and
lighttpd of version 1.4.26-1.1ubuntu3.1.

The patch (Fix-stalls-while-reading-from-ssl-sockets-fixes-2197.patch)
is available from http://redmine.lighttpd.net/issues/2197.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/874076

Title:
  lighttpd stalls when reading fragmented ssl requests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lighttpd/+bug/874076/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 542357] Re: upgrade from karmic to lucid: gui is crashing on login

2010-07-16 Thread volinthius
I'm experiencing this bug as well. Running Lucid on Hardy's qemu
(0.9.1-1ubuntu1).

Renaming /lib/tls/i686/cmov/libc.so.6 away bypassed the bug.

-- 
upgrade from karmic to lucid: gui is crashing on login
https://bugs.launchpad.net/bugs/542357
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 587548] Re: Samba fails to share printer in 10.04

2010-06-05 Thread volinthius
I'm seeing this as well. The cups init script contains:

...
# X-Start-Before:samba
# X-Stop-After:  samba
...

It seems that 'X-Start-Before' and 'X-Stop-After' aren't compatible with
upstart. I fixed this by calling 'initctl emit cups-started' when
starting cups, and hooking on to that in samba init script. The correct
fix would be to convert cups to upstart.

Ubuntu Server 10.04
samba: 2:3.4.7~dfsg-1ubuntu3
cups: 1.4.3-1

-- 
Samba fails to share printer in 10.04 
https://bugs.launchpad.net/bugs/587548
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 459832] [NEW] Touchpad is re-enabled after typing

2009-10-24 Thread volinthius
Public bug reported:

Binary package hint: acpi-support

The script asus-touchpad.sh disables touchpad until keyboard is typed.
This problem seems to be caused by syndaemon, which re-enables touchpad
after typing. With syndaemon shut down this doesn't occur.

I suggest fixing this by using the xinput property Device Enabled
instead of Synaptics Off in asus-touchpad.sh

Steps to repeat the problem:
Seen on Ubuntu 9.10 with acpi-support 0.129. Using Lenovo T61.
1) Disable touchpad via Fn+F8
2) Verify disableness by using the touchpad
3) Type some keys
4) Verify enableness by using the touchpad

** Affects: acpi-support (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Touchpad is re-enabled after typing
https://bugs.launchpad.net/bugs/459832
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 459832] Re: Touchpad is re-enabled after typing

2009-10-24 Thread volinthius

** Attachment added: Use Device Enabled xinput property instead of Synaptic 
Off
   http://launchpadlibrarian.net/34325278/use-device-enabled-property.patch

-- 
Touchpad is re-enabled after typing
https://bugs.launchpad.net/bugs/459832
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 459832] Re: Touchpad is re-enabled after typing

2009-10-24 Thread volinthius
** Description changed:

  Binary package hint: acpi-support
  
  The script asus-touchpad.sh disables touchpad until keyboard is typed.
- This problem seems to be caused by syndaemon, which re-enables touchpad
- after typing. With syndaemon shut down this doesn't occur.
+ This seems to be caused by syndaemon, which re-enables touchpad after
+ typing. With syndaemon shut down this doesn't occur.
  
  I suggest fixing this by using the xinput property Device Enabled
  instead of Synaptics Off in asus-touchpad.sh
  
  Steps to repeat the problem:
  Seen on Ubuntu 9.10 with acpi-support 0.129. Using Lenovo T61.
  1) Disable touchpad via Fn+F8
  2) Verify disableness by using the touchpad
  3) Type some keys
  4) Verify enableness by using the touchpad

-- 
Touchpad is re-enabled after typing
https://bugs.launchpad.net/bugs/459832
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs