[Bug 1673165] [NEW] Ignores route depending on other route

2017-03-15 Thread Tobias Wolter
Public bug reported:

Used versions:
* Ubuntu 16.10
* network-manager 1.2.6-0ubuntu1
* network-manager-openvpn 1.2.6-2ubuntu1
* openvpn 2.3.11-1ubuntu2


Just like iputils refuses to add routes where it doesn't has a route to the 
gateway on the device, openvpn seems pretty much to do the same.

% sudo /usr/lib/NetworkManager/nm-openvpn-service --debug
[...]
nm-openvpn[16132]:  [helper-16342] environment: script_type=up
nm-openvpn[16132]:  [helper-16342] environment: dev_type=tun
nm-openvpn[16132]:  [helper-16342] environment: dev=tun0
nm-openvpn[16132]:  [helper-16342] environment: link_mtu=1542
nm-openvpn[16132]:  [helper-16342] environment: tun_mtu=1500
nm-openvpn[16132]:  [helper-16342] environment: script_context=init
nm-openvpn[16132]:  [helper-16342] environment: 
route_gateway_2=172.19.200.141
nm-openvpn[16132]:  [helper-16342] environment: 
route_netmask_2=255.255.255.0
nm-openvpn[16132]:  [helper-16342] environment: 
route_network_2=172.19.200.0
nm-openvpn[16132]:  [helper-16342] environment: 
route_gateway_1=172.19.200.141
nm-openvpn[16132]:  [helper-16342] environment: 
route_netmask_1=255.255.0.0
nm-openvpn[16132]:  [helper-16342] environment: 
route_network_1=172.19.0.0
nm-openvpn[16132]:  [helper-16342] environment: 
route_vpn_gateway=172.19.200.141
nm-openvpn[16132]:  [helper-16342] environment: 
route_net_gateway=192.168.178.1
nm-openvpn[16132]:  [helper-16342] environment: 
ifconfig_remote=172.19.200.141
nm-openvpn[16132]:  [helper-16342] environment: 
ifconfig_local=172.19.200.142
nm-openvpn[16132]:  [helper-16342] environment: common_name=server
nm-openvpn[16132]:  [helper-16342] environment: trusted_port=1194
nm-openvpn[16132]:  [helper-16342] environment: trusted_ip=IP_REMOVED
nm-openvpn[16132]:  [helper-16342] environment: untrusted_port=1194
nm-openvpn[16132]:  [helper-16342] environment: untrusted_ip=IP_REMOVED
[...TLS certs etc]
nm-openvpn[16132]:  [helper-16342] environment: verb=10
nm-openvpn[16132]:  [helper-16342] environment: daemon=0
nm-openvpn[16132]:  [helper-16342] environment: daemon_log_redirect=0
nm-openvpn[16132]:  [helper-16342] environment: 
daemon_start_time=1489594872
nm-openvpn[16132]:  [helper-16342] environment: daemon_pid=16267
nm-openvpn[16132]:  [helper-16342] environment: proto_1=udp
nm-openvpn[16132]:  [helper-16342] environment: local_port_1=0
nm-openvpn[16132]:  [helper-16342] environment: 
remote_1=HOST_NAME_REMOVED
nm-openvpn[16132]:  [helper-16342] environment: remote_port_1=1194
[...]

% ip r l | grep 172.19
172.19.200.0/24 via 172.19.200.141 dev tun0  proto static  metric 50 
172.19.200.141 dev tun0  proto kernel  scope link  src 172.19.200.142  metric 
50 

I don't see anything happening to the routes wrt errors:
Wed Mar 15 17:21:15 2017 us=306238 PUSH: Received control message: 
'PUSH_REPLY,route 172.19.0.0 255.255.0.0,route 172.19.200.0 255.255.255.0,ping 
10,ping-restart 120,ifconfig 172.19.200.142 172.19.200.141'
Wed Mar 15 17:21:15 2017 us=306271 OPTIONS IMPORT: timers and/or timeouts 
modified
Wed Mar 15 17:21:15 2017 us=306287 OPTIONS IMPORT: --ifconfig/up options 
modified
Wed Mar 15 17:21:15 2017 us=306290 OPTIONS IMPORT: route options modified
Wed Mar 15 17:21:15 2017 us=306371 ROUTE_GATEWAY 192.168.178.1/255.255.255.0 
IFACE=eth0 HWADDR=54:ee:75:51:75:eb
Wed Mar 15 17:21:15 2017 us=324890 TUN/TAP device tun0 opened
Wed Mar 15 17:21:15 2017 us=324925 TUN/TAP TX queue length set to 100
Wed Mar 15 17:21:15 2017 us=324964 
/usr/lib/NetworkManager/nm-openvpn-service-openvpn-helper --debug 6 16132 
--bus-name org.freedesktop.NetworkManager.openvpn --tun -- tun0 1500 1542 
172.19.200.142 172.19.200.141 init
Wed Mar 15 17:21:15 2017 us=325278 PKCS#11: __pkcs11h_forkFixup entry 
pid=16342, activate_slotevent=1
Wed Mar 15 17:21:15 2017 us=325329 PKCS#11: __pkcs11h_forkFixup return
nm-openvpn[16132]:  [helper-16342] command line: 
"/usr/lib/NetworkManager/nm-openvpn-service-openvpn-helper" "--debug" "6" 
"16132" "--bus-name" "org.freedesktop.NetworkManager.openvpn" "--tun" "--"   
"tun0" "1500" "1542" "172.19.200.142" "172.19.200.141" "init"
nm-openvpn[16132]:  [helper-16342] environment: script_type=up

I'm figuring it's trying to add the route before the network route
itself is there, which leads to expected results when testing:

% sudo ip link add foobar0 type dummy
% sudo ip r a 172.19.0.0/16 dev foobar0 via 172.19.200.141
RTNETLINK answers: Network is unreachable

If you use openvpn directly though, it works just fine:
% ip r l | grep 172.19
% 
% sudo openvpn client.conf
[...]
Wed Mar 15 17:42:13 2017 /sbin/ip addr add dev tun0 local 172.19.200.142 peer 
172.19.200.141
Wed Mar 15 17:42:13 2017 /sbin/ip route add 172.19.0.0/16 via 172.19.200.141
Wed Mar 15 17:42:13 2017 /sbin/ip route add 172.19.200.0/24 via 172.19.200.141
[...]
% ip r l | grep 172.19
172.19.0.0/16 via 172.19.200.141 dev tun0 
172.19.200.0/24 via 172.19.200.141 dev tun0 
172.19.200.141 dev tun0  proto kernel  scope link  src 172.19.200.142 

So I'll be blaming nm-openvpn-servi

[Bug 1645257] [NEW] bluetoothd does not notice udev-induced device name change

2016-11-28 Thread Tobias Wolter
Public bug reported:

Cheers,

using Ubuntu 16.10 and bluez 5.41-0ubuntu3 from yakkety, using Bluetooth
NAP functionality to connect a device via the system's network connect
fails because udev renames the device when it is registered and
bluetoothd fails to realize that:

Nov 28 10:26:21 fenrir kernel: bluetooth hci0:256 enx340286443693: renamed from 
bnep0
Nov 28 10:26:21 fenrir bluetoothd[2224]: bnep: Can't add bnep0 to the bridge 
pan1: No such device(19)
Nov 28 10:26:21 fenrir bluetoothd[2224]: BNEP server cannot be added

Expected results would, of course, be "added enx340286443693 to the
bridge pan1".

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

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

Title:
  bluetoothd does not notice udev-induced device name change

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

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


[Bug 1641396] [NEW] Processes showing up with wrong names

2016-11-13 Thread Tobias Wolter
Public bug reported:

Long process names (i.e. chrome) seem to actively confuse glances, which
leads to weird bugs.

Compare https://github.com/nicolargo/glances/issues/965.

This has been fixed upstream, so I'd recommend pushing an update in.

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

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

Title:
  Processes showing up with wrong names

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

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


[Bug 1502539] Re: open-vm-tools-dkms 2:9.10.2-2822639-1ubuntu3: open-vm-tools kernel module failed to build

2016-02-16 Thread Tobias Wolter
Seriously, just upgrade the source code or compile with less strict
error checking, that's the whole issue here:

/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:59:21: warning: 
initialization from incompatible pointer type [-Wincompatible-pointer-types]
.follow_link   = HgfsFollowlink,
 ^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:59:21: note: (near 
initialization for ‘HgfsLinkInodeOperations.follow_link’)
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:61:21: warning: 
initialization from incompatible pointer type [-Wincompatible-pointer-types]
.put_link  = HgfsPutlink,
 ^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:61:21: note: (near 
initialization for ‘HgfsLinkInodeOperations.put_link’)
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c: In function 
‘HgfsFollowlink’:
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:127:10: error: implicit 
declaration of function ‘nd_set_link’ [-Werror=implicit-function-declaration]
  nd_set_link(nd, fileName);
  ^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c: In function 
‘HgfsPutlink’:
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:238:15: error: implicit 
declaration of function ‘nd_get_link’ [-Werror=implicit-function-declaration]
fileName = nd_get_link(nd);
   ^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:238:13: warning: 
assignment makes pointer from integer without a cast [-Wint-conversion]
fileName = nd_get_link(nd);
 ^
cc1: some warnings being treated as errors
scripts/Makefile.build:258: recipe for target 
'/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.o' failed

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

Title:
  open-vm-tools-dkms 2:9.10.2-2822639-1ubuntu3: open-vm-tools kernel
  module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/open-vm-tools/+bug/1502539/+subscriptions

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

[Bug 1502920] [NEW] Should provide pkg-config .pc

2015-10-05 Thread Tobias Wolter
Public bug reported:

Does not do so.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: libstrophe-dev 0.8.7-1
ProcVersionSignature: Ubuntu 3.19.0-28.30-generic 3.19.8-ckt5
Uname: Linux 3.19.0-28-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.5
Architecture: amd64
CurrentDesktop: GNOME
Date: Mon Oct  5 16:24:49 2015
InstallationDate: Installed on 2015-07-07 (89 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
SourcePackage: libstrophe
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug vivid

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

Title:
  Should provide pkg-config .pc

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

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


[Bug 1497903] [NEW] Should suggest python3-matplotlib

2015-09-21 Thread Tobias Wolter
Public bug reported:

glances history graph feature needs python3-matplotlib. It's neither
suggested nor recommended.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: glances 2.2-1
ProcVersionSignature: Ubuntu 3.19.0-28.30-generic 3.19.8-ckt5
Uname: Linux 3.19.0-28-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.4
Architecture: amd64
CurrentDesktop: GNOME
Date: Mon Sep 21 11:08:22 2015
InstallationDate: Installed on 2015-07-07 (75 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
PackageArchitecture: all
SourcePackage: glances
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug vivid

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

Title:
  Should suggest python3-matplotlib

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

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


[Bug 1467481] [NEW] Fails silently when no network present

2015-06-22 Thread Tobias Wolter
Public bug reported:

If no network connection is present and on the additional driver tab one
selects a driver that needs to download packages, 'apply changes' fails,
reverting to previous setting, without further comment.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: software-properties-common 0.96.4
ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
Uname: Linux 3.19.0-21-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.1
Architecture: amd64
CurrentDesktop: GNOME
Date: Mon Jun 22 13:33:24 2015
InstallationDate: Installed on 2013-05-06 (776 days ago)
InstallationMedia: Ubuntu-GNOME 13.04 "Raring Ringtail" - Release amd64 
(20130424)
PackageArchitecture: all
SourcePackage: software-properties
UpgradeStatus: Upgraded to vivid on 2014-10-23 (241 days ago)

** Affects: software-properties (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug gnome3-ppa third-party-packages vivid

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

Title:
  Fails silently when no network present

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1467481/+subscriptions

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


[Bug 1447501] [NEW] deja-dup crashes on start when using S3

2015-04-23 Thread Tobias Wolter
Public bug reported:

Backtrace when starting deja-dup backup to S3 (either via GUI or using
deja-dup --backup):

Traceback (most recent call last):
  File "/usr/bin/duplicity", line 1500, in 
with_tempdir(main)
  File "/usr/bin/duplicity", line 1494, in with_tempdir
fn()
  File "/usr/bin/duplicity", line 1327, in main
action = commandline.ProcessCommandLine(sys.argv[1:])
  File "/usr/lib/python2.7/dist-packages/duplicity/commandline.py", line 1047, 
in ProcessCommandLine
globals.backend = backend.get_backend(args[0])
  File "/usr/lib/python2.7/dist-packages/duplicity/backend.py", line 221, in 
get_backend
obj = get_backend_object(url_string)
  File "/usr/lib/python2.7/dist-packages/duplicity/backend.py", line 207, in 
get_backend_object
return factory(pu)
  File "/usr/lib/python2.7/dist-packages/duplicity/backends/_boto_single.py", 
line 161, in __init__
self.resetConnection()
  File "/usr/lib/python2.7/dist-packages/duplicity/backends/_boto_single.py", 
line 183, in resetConnection
self.conn = get_connection(self.scheme, self.parsed_url, self.storage_uri)
  File "/usr/lib/python2.7/dist-packages/duplicity/backends/_boto_single.py", 
line 97, in get_connection
assert scheme == 's3'
AssertionError

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: deja-dup 32.0-0ubuntu5
ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
Uname: Linux 3.19.0-15-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
CurrentDesktop: GNOME
Date: Thu Apr 23 10:43:45 2015
InstallationDate: Installed on 2013-05-06 (716 days ago)
InstallationMedia: Ubuntu-GNOME 13.04 "Raring Ringtail" - Release amd64 
(20130424)
SourcePackage: deja-dup
UpgradeStatus: Upgraded to vivid on 2014-10-23 (181 days ago)

** Affects: deja-dup (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug vivid

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

Title:
  deja-dup crashes on start when using S3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/deja-dup/+bug/1447501/+subscriptions

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


[Bug 1426358] [NEW] upgrade of whoopsie fails due to report_crashes=false

2015-02-27 Thread Tobias Wolter
Public bug reported:

Cheers,

I'm using systemd and have set report_crashes=false in
/etc/default/whoopsie.

The systemctl service

$ systemctl status whoopsie.service
whoopsie.service - crash report submission daemon
   Loaded: loaded (/lib/systemd/system/whoopsie.service; enabled)
   Active: failed (Result: start-limit) since Fr 2015-02-27 13:52:53 CET; 7s ago
  Process: 22882 ExecStartPre=/bin/grep -sqi report_crashes=true 
/etc/default/whoopsie (code=exited, status=1/FAILURE)

fails as one would expect; but having these kind of startup requirements
in the systemd service is probably a bad idea, especially as it leaves
the package unconfigured:

$ sudo dpkg --configure --pending
Setting up whoopsie (0.2.39ubuntu0.2) ...
Job for whoopsie.service failed. See 'systemctl status whoopsie.service' and 
'journalctl -xn' for details.
invoke-rc.d: initscript whoopsie, action "start" failed.
dpkg: error processing package whoopsie (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 whoopsie

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: whoopsie 0.2.39ubuntu0.2
ProcVersionSignature: Ubuntu 3.16.0-30.40-generic 3.16.7-ckt3
Uname: Linux 3.16.0-30-generic x86_64
ApportVersion: 2.14.7-0ubuntu8.2
Architecture: amd64
CrashReports: 640:0:111:272248:2015-02-27 13:37:38.737388070 +0100:2015-02-27 
13:37:38.685387839 +0100:/var/crash/whoopsie.0.crash
CurrentDesktop: GNOME
Date: Fri Feb 27 13:54:04 2015
InstallationDate: Installed on 2013-05-06 (661 days ago)
InstallationMedia: Ubuntu-GNOME 13.04 "Raring Ringtail" - Release amd64 
(20130424)
RelatedPackageVersions: apport-noui N/A
SourcePackage: whoopsie
UpgradeStatus: Upgraded to utopic on 2014-10-23 (126 days ago)
modified.conffile..etc.default.whoopsie:
 [General]
 report_crashes=false
mtime.conffile..etc.default.whoopsie: 2013-12-15T20:44:50.138659

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


** Tags: amd64 apport-bug autoreport-false utopic

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

Title:
  upgrade of whoopsie fails due to report_crashes=false

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

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


[Bug 1287943] Re: vm-builder needs trusty suite

2014-05-26 Thread Tobias Wolter
Correction, not the same, but:

^CTraceback (most recent call last):
  File "/usr/bin/vmbuilder", line 24, in 
cli.main()
  File "/usr/lib/python2.7/dist-packages/VMBuilder/contrib/cli.py", line 216, 
in main
distro.build_chroot()
  File "/usr/lib/python2.7/dist-packages/VMBuilder/distro.py", line 83, in 
build_chroot
self.call_hooks('bootstrap')
  File "/usr/lib/python2.7/dist-packages/VMBuilder/distro.py", line 67, in 
call_hooks
call_hooks(self, *args, **kwargs)
KeyboardInterrupt

I'll have a look later if I can find something to patch there

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

Title:
  vm-builder needs trusty suite

To manage notifications about this bug go to:
https://bugs.launchpad.net/vmbuilder/+bug/1287943/+subscriptions

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


[Bug 1287943] Re: vm-builder needs trusty suite

2014-05-26 Thread Tobias Wolter
Same as the others are seeing for trusty.

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

Title:
  vm-builder needs trusty suite

To manage notifications about this bug go to:
https://bugs.launchpad.net/vmbuilder/+bug/1287943/+subscriptions

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


[Bug 1250832] [NEW] cannot edit VPN preferences via GUI

2013-11-13 Thread Tobias Wolter
Public bug reported:

When trying to edit a VPN connection, I go to "Network Settings > 
VPN", use the settings icon, and on the identity tab, I only get the
option to edit the name and a message "Error: unable to load VPN
connection editor".

Judging from the error message, I assume it's an incompatibility that
came with the changes of https://mail.gnome.org/archives/commits-
list/2013-January/msg09675.html

The only way to currently edit a VPN profile is by hand.

** Affects: network-manager-openvpn (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "Screenshot of dialog"
   
https://bugs.launchpad.net/bugs/1250832/+attachment/3907968/+files/Screenshot%20from%202013-11-13%2012%3A57%3A57.png

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

Title:
  cannot edit VPN preferences via GUI

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/1250832/+subscriptions

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


[Bug 1245516] [NEW] owncloud integration fails at HTTP basic auth

2013-10-28 Thread Tobias Wolter
Public bug reported:

When trying to add an owncloud server to the online accounts, the adding
fails because the HTTP Basic auth does not get handled.

The relevant error message is "unexpected response from server".

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: evolution-data-server-goa 3.8.5-1ubuntu3
ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
Uname: Linux 3.11.0-12-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.1
Architecture: amd64
Date: Mon Oct 28 15:31:51 2013
InstallationDate: Installed on 2013-05-06 (174 days ago)
InstallationMedia: Ubuntu-GNOME 13.04 "Raring Ringtail" - Release amd64 
(20130424)
MarkForUpload: True
SourcePackage: evolution-data-server
UpgradeStatus: Upgraded to saucy on 2013-10-17 (10 days ago)

** Affects: evolution-data-server (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug gnome3-ppa saucy third-party-packages

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

Title:
  owncloud integration fails at HTTP basic auth

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/1245516/+subscriptions

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


[Bug 1244625] Re: Tries to load "default" skin and fails

2013-10-25 Thread Tobias Wolter
I correct myself, it's supplied via a symlink to clearplayer, but:

Error in skin config file on line 6: PNG read error in
/usr/share/mplayer/skins/default/main

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

Title:
  Tries to load "default" skin and fails

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

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


[Bug 1244625] [NEW] Tries to load "default" skin and fails

2013-10-25 Thread Tobias Wolter
Public bug reported:

When installing mplayer-gui fresh on  13.10, it tries to load a skin
called "default" from the skins directory and crashes.

A "default" skin is not supplied with mplayer-skins, and additionally,
there's no included documentation on how to change the skin.

Yes, I know how to fix this for myself, but a broken default state is
bad.

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

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

Title:
  Tries to load "default" skin and fails

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

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


[Bug 1106908] Re: Sound Recorder can not record sound

2013-10-20 Thread Tobias Wolter
This is a bug present in 13.04, 13.10, gnome stable as well as staging
ppas. It's utterly silly and makes a whole program unusable, please stop
playing the triage and blame game and start debugging this.

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

Title:
  Sound Recorder can not record sound

To manage notifications about this bug go to:
https://bugs.launchpad.net/hundredpapercuts/+bug/1106908/+subscriptions

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


[Bug 1153488] Re: Treats bluetooth input device batteries as batteries

2013-10-18 Thread Tobias Wolter
FWIW, not fixed in the staging ppa.

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

Title:
  Treats bluetooth input device batteries as batteries

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/1153488/+subscriptions

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


[Bug 1144666] Re: Depends on apport

2013-10-11 Thread Tobias Wolter
It seems to be a useless dependency, especially as none of the Ubuntu
One functionality actively requires apport at any point.

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

Title:
  Depends on apport

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntuone-client/+bug/1144666/+subscriptions

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