[Bug 2064096] Re: Services fail to start in noble deployed with TPM+FDE

2024-05-24 Thread James Paton-Smith
I've finally had time to test this on a non TPM-FDE machine and can
confirm that services like cups are now working after installing the
systemd version from noble-proposed.

Testing:
- Install clean Ubuntu 24.04 (no TPM-FDE)
- Install dracut & reboot
- Check cups status (failing to start)
- Install systemd 255.4-1ubuntu8.1 from noble-proposed
- Run 'dracut --regenerate-all --force
- Reboot

After doing this, services like cups and rsyslog now are starting
without issue.

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

Title:
  Services fail to start in noble deployed with TPM+FDE

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


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

[Bug 2066985] [NEW] Mutli-nic ENI rendering fails if ENI activator not used

2024-05-23 Thread James Falcon
Public bug reported:

[ Impact ]

Cloud-init recently added policy-based routing for netplan-only systems
on EC2. In order to gate the netplan-specific code, it checked to see in
the netplan activator was being used. However, if the datasource is
fetched in init-local timeframe (such as on EC2), it is possible to
specify a different renderer without also changing the activator. This
means the netplan-gating no longer works, even when rendering to a non-
netplan system.

The fix is to instead check if we're using the netplan renderer before
rendering the netplan-specific code.

[ Test Plan ]

Launch an Ubuntu instance on EC2 having two NICs attached.
Run "apt update; apt install ifupdown"
In /etc/cloud/cloud.cfg, update the `renderers` line to start with `eni` rather 
than `netplan`
`cloud-init clean --logs --reboot`
Connect to instance
Verify no networking related tracebacks exist in logs
Verify /etc/network/interfaces.d/ contains valid networking information for 
both NICs.

Run tests/integration_tests/modules/test_hotplug.py and
tests/integration_tests/test_networking.py
to ensure no regression to existing multinic rendering behavior.

[ Where problems could occur ]

If the renderer is still somehow misdetecting a netplan or non-netplan
based system, we could still attempt to render netplan config where we
shouldn't be, or instead skip rendering the config where we shouldn't
be.

[ Other Info ]

Upstream bug: https://github.com/canonical/cloud-init/issues/5318
Upstream fix: https://github.com/canonical/cloud-init/pull/5321

** Affects: cloud-init (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: cloud-init (Ubuntu Focal)
 Importance: Undecided
 Status: New

** Affects: cloud-init (Ubuntu Jammy)
 Importance: Undecided
 Status: New

** Affects: cloud-init (Ubuntu Mantic)
 Importance: Undecided
 Status: New

** Affects: cloud-init (Ubuntu Noble)
 Importance: Undecided
 Status: New

** Affects: cloud-init (Ubuntu Oracular)
 Importance: Undecided
 Status: New

** Description changed:

  [ Impact ]
  
  Cloud-init recently added policy-based routing for netplan-only systems
  on EC2. In order to gate the netplan-specific code, it checked to see in
  the netplan activator was being used. However, if the datasource is
  fetched in init-local timeframe (such as on EC2), it is possible to
  specify a different renderer without also changing the activator. This
  means the netplan-gating no longer works, even when rendering to a non-
  netplan system.
  
  The fix is to instead check if we're using the netplan renderer before
  rendering the netplan-specific code.
  
  [ Test Plan ]
  
- Launch an Ubuntu instance on EC2 having two NICs attached. 
+ Launch an Ubuntu instance on EC2 having two NICs attached.
  Run "apt update; apt install ifupdown"
  In /etc/cloud/cloud.cfg, update the `renderers` line to start with `eni` 
rather than `netplan`
  `cloud-init clean --logs --reboot`
  Connect to instance
  Verify no networking related tracebacks exist in logs
  Verify /etc/network/interfaces.d/ contains valid networking information for 
both NICs.
  
  Run tests/integration_tests/modules/test_hotplug.py and
  tests/integration_tests/test_networking.py
  to ensure no regression to existing multinic rendering behavior.
  
  [ Where problems could occur ]
  
  If the renderer is still somehow misdetecting a netplan or non-netplan
  based system, we could still attempt to render netplan config where we
  shouldn't be, or instead skip rendering the config where we shouldn't
  be.
  
+ [ Other Info ]
  
- [ Other Info ]
-  
- Upstream bug:
+ Upstream bug: https://github.com/canonical/cloud-init/issues/5318
  Upstream fix: https://github.com/canonical/cloud-init/pull/5321

** Also affects: cloud-init (Ubuntu Oracular)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Mantic)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Focal)
   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/2066985

Title:
  Mutli-nic ENI rendering fails if ENI activator not used

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066985/+subscriptions


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

[Bug 2066979] Re: cloud-init network fails in ipv6-only subnet with multi-NICs

2024-05-23 Thread James Falcon
** Description changed:

  [ Impact ]
  
  Cloud-init recently added policy based routing for multi-nic setups in
  EC2. The added code assumed that "subnet-ipv4-cidr-block" would be
  present in the metadata obtained from EC2's IMDS. However, on ipv6-only
  instances, this is not true. The assumption leads to a traceback when
  attempting to access the key, resulting in cloud-init failing to
  properly render the network configuration and leaving the instance
  unaccessable.
  
  The fix is to check for required keys before configuring policy based
  routing, and if the keys do not exist, skip configuration.
  
  [ Test Plan ]
  
  Launch an EC2 instance with at least two NICs in an ipv6-only subnet.
  Verify that the instance can be accessed via SSH.
  Verify that there are no warnings of tracebacks in the logs related to 
network configuration.
  Verify that /etc/netplan/50-cloud-init.yaml contains the relevant routing 
information and that `ip route` shows the routes as active.
  
+ Run tests/integration_tests/modules/test_hotplug.py and
+ tests/integration_tests/test_networking.py
+ to ensure no regression to existing multinic rendering behavior.
+ 
  [ Where problems could occur ]
  
  Since we've added a guard to the policy-based routing rendering, any
  error in this code would result in the same functionality as now, or
  result in rendering all of the network except for the policy based
  routing for secondary NICs.
  
- 
  [ Other Info ]
  Upstream bug: https://github.com/canonical/cloud-init/issues/5283
  Upstream fix: https://github.com/canonical/cloud-init/pull/5287
  Upstream change causing issue: 
https://github.com/canonical/cloud-init/pull/4799/files#diff-66c4d0c34e626a49273eda62819c3068f5501520b86f28e89e0f998cf4cf2027R1058

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

Title:
  cloud-init network fails in ipv6-only subnet with multi-NICs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066979/+subscriptions


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

[Bug 2066979] Re: cloud-init network fails in ipv6-only subnet with multi-NICs

2024-05-23 Thread James Falcon
** Also affects: cloud-init (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Mantic)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Focal)
   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/2066979

Title:
  cloud-init network fails in ipv6-only subnet with multi-NICs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066979/+subscriptions


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

[Bug 2066979] [NEW] cloud-init network fails in ipv6-only subnet with multi-NICs

2024-05-23 Thread James Falcon
Public bug reported:

[ Impact ]

Cloud-init recently added policy based routing for multi-nic setups in
EC2. The added code assumed that "subnet-ipv4-cidr-block" would be
present in the metadata obtained from EC2's IMDS. However, on ipv6-only
instances, this is not true. The assumption leads to a traceback when
attempting to access the key, resulting in cloud-init failing to
properly render the network configuration and leaving the instance
unaccessable.

The fix is to check for required keys before configuring policy based
routing, and if the keys do not exist, skip configuration.

[ Test Plan ]

Launch an EC2 instance with at least two NICs in an ipv6-only subnet.
Verify that the instance can be accessed via SSH.
Verify that there are no warnings of tracebacks in the logs related to network 
configuration.
Verify that /etc/netplan/50-cloud-init.yaml contains the relevant routing 
information and that `ip route` shows the routes as active.

[ Where problems could occur ]

Since we've added a guard to the policy-based routing rendering, any
error in this code would result in the same functionality as now, or
result in rendering all of the network except for the policy based
routing for secondary NICs.


[ Other Info ]
Upstream bug: https://github.com/canonical/cloud-init/issues/5283
Upstream fix: https://github.com/canonical/cloud-init/pull/5287
Upstream change causing issue: 
https://github.com/canonical/cloud-init/pull/4799/files#diff-66c4d0c34e626a49273eda62819c3068f5501520b86f28e89e0f998cf4cf2027R1058

** Affects: cloud-init (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: cloud-init (Ubuntu Noble)
 Importance: Undecided
 Status: New

** Affects: cloud-init (Ubuntu Oracular)
 Importance: Undecided
 Status: New

** Also affects: cloud-init (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Oracular)
   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/2066979

Title:
  cloud-init network fails in ipv6-only subnet with multi-NICs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066979/+subscriptions


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

[Bug 2066066] Re: cloud-init startup failure with Python 3.9.5, Ubuntu Focal

2024-05-22 Thread James Falcon
The version of Python that is shipped with Ubuntu is what is supported
for the system. In the case of Focal, that is 3.8. It is fine to install
and use Python 3.9 for user applications, but when you run `update-
alternatives` to replace the default version of Python, you are now
forcing packages that were expecting to use Python 3.8 to instead use
Python 3.9.

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

Title:
  cloud-init startup failure with Python 3.9.5, Ubuntu Focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066066/+subscriptions


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

[Bug 2066066] Re: cloud-init startup failure with Python 3.9.5, Ubuntu Focal

2024-05-22 Thread James Falcon
"when we install python3.9, we point /usr/bin/python to 3.9, but not
/usr/bin/python3"

cloud-init does use `python3` and not `python`, though I'm not sure that
would change anything.

$ head -1 /usr/bin/cloud-init
#!/usr/bin/python3

Since we can launch the AMI and cloud-init works ok out of the box using
the supported version of python, this appears to be an issue with how
the environment is getting customized. Since we're still not entirely
sure of the root cause, I'll leave the bug state as Incomplete, but
unless we can get more information as to why the python3-jinja2 package
isn't being seen in your cloud-init environment and that the cloud-init
package is doing something wrong here, it doesn't look like there's
anything to fix.

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

Title:
  cloud-init startup failure with Python 3.9.5, Ubuntu Focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066066/+subscriptions


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

[Bug 2064096] Re: Services fail to start in noble deployed with TPM+FDE

2024-05-22 Thread James Paton-Smith
Hi Łukasz,

Here is the testing I have performed.

- Enabled noble-proposed
- Installed latest systemd from noble-proposed (255.4-1ubuntu8.1)
- removed all systemd drop-in files for cups
- Rebooted the device

After rebooting I monitored the cups.service but it still is failing to start.
I can see the following in the systemd journal:
```
May 22 14:43:15 ubu-n-b5c04f594433 kernel: audit: type=1400 
audit(1716385395.378:290): apparmor="DENIED" operation="sendmsg" class="file" 
profile="/usr/sbin/cupsd" name="/systemd/notify" pid=10265 comm="cupsd" 
requested_mask="w" denied_mask="w" fsuid=0 ouid=0
```

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

Title:
  Services fail to start in noble deployed with TPM+FDE

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


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

[Bug 2066352] [NEW] Desktop session crashes randomly

2024-05-22 Thread James Paton-Smith
Public bug reported:

On a test laptop running Ubuntu 24.04, I am occasionally seeing my
desktop session crash and return to the login screen.

I haven't identified a pattern for these crashes yet but seems to occur
randomly regardless of which app i have open or if I'm interacting with
the system or it's idle.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: gnome-shell 46.0-0ubuntu5.1
ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
Uname: Linux 6.8.0-31-generic x86_64
ApportVersion: 2.28.1-0ubuntu3
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Wed May 22 10:38:31 2024
DisplayManager: gdm3
ProcEnviron:
 LANG=en_GB.UTF-8
 PATH=(custom, no user)
 SHELL=/usr/local/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
RelatedPackageVersions: mutter-common 46.0-1ubuntu9
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug noble wayland-session

** Attachment added: "This journalctl log contains logs for the most recent 
crash. Crash occurred at around 10:05AM"
   
https://bugs.launchpad.net/bugs/2066352/+attachment/5781146/+files/journal.log

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

Title:
  Desktop session crashes randomly

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


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

[Bug 2063334] Re: PHP Warning: PHP Startup: Unable to load dynamic library 'mailparse.so' (tried: /usr/lib/php/20230831/mailparse.so (/usr/lib/php/20230831/mailparse.so: undefined symbol: mbfl_name2no

2024-05-21 Thread James McDonald
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2063334

Title:
  PHP Warning:  PHP Startup: Unable to load dynamic library
  'mailparse.so' (tried: /usr/lib/php/20230831/mailparse.so
  (/usr/lib/php/20230831/mailparse.so: undefined symbol:
  mbfl_name2no_encoding), /usr/lib/php/20230831/mailparse.so.so
  (/usr/lib/php/20230831/mailparse.so.so: cannot open shared object
  file: No such file or directory)) in Unknown on line 0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-mailparse/+bug/2063334/+subscriptions


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

[Bug 2063334] Re: PHP Warning: PHP Startup: Unable to load dynamic library 'mailparse.so' (tried: /usr/lib/php/20230831/mailparse.so (/usr/lib/php/20230831/mailparse.so: undefined symbol: mbfl_name2no

2024-05-21 Thread James McDonald
I tried the temporary fix but I get "undefined symbol:
zif_mailparse_test" when compiling from source as above

php -v
PHP Warning:  PHP Startup: Unable to load dynamic library 'mailparse.so' 
(tried: /usr/lib/php/20230831/mailparse.so (/usr/lib/php/20230831/mailparse.so: 
undefined symbol: zif_mailparse_test), /usr/lib/php/20230831/mailparse.so.so 
(/usr/lib/php/20230831/mailparse.so.so: cannot open shared object file: No such 
file or directory)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'mailparse.so' 
(tried: /usr/lib/php/20230831/mailparse.so (/usr/lib/php/20230831/mailparse.so: 
undefined symbol: zif_mailparse_test), /usr/lib/php/20230831/mailparse.so.so 
(/usr/lib/php/20230831/mailparse.so.so: cannot open shared object file: No such 
file or directory)) in Unknown on line 0
PHP 8.3.6 (cli) (built: Apr 15 2024 19:21:47) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.3.6, Copyright (c) Zend Technologies
with Zend OPcache v8.3.6, Copyright (c), by Zend Technologies

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

Title:
  PHP Warning:  PHP Startup: Unable to load dynamic library
  'mailparse.so' (tried: /usr/lib/php/20230831/mailparse.so
  (/usr/lib/php/20230831/mailparse.so: undefined symbol:
  mbfl_name2no_encoding), /usr/lib/php/20230831/mailparse.so.so
  (/usr/lib/php/20230831/mailparse.so.so: cannot open shared object
  file: No such file or directory)) in Unknown on line 0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-mailparse/+bug/2063334/+subscriptions


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

[Bug 2050865] Re: GNOME Wayland session crashes with libmutter:ERROR:../src/core/window.c:...:meta_window_get_work_area_for_logical_monitor: assertion failed: (logical_monitor)

2024-05-21 Thread James Judd
Thanks for the info. Very excited to know that 24.04 will get this
automatically as part of 46.1. I'm curious if 46.1 is something that's
days, weeks, or months away from being released on 24.04?

I ask because we've got several folks internally running into this and
I'm trying to decide if it's better to wait for the fix to hit 24.04 or
for us to build a deb with the fix and have folks use that for now. If
the fix is likely to reach 24.04 soon, then we'll wait. If not, then
we'll likely do some work to get the fix to folks sooner.

Thanks again.

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

Title:
  GNOME Wayland session crashes with
  
libmutter:ERROR:../src/core/window.c:...:meta_window_get_work_area_for_logical_monitor:
  assertion failed: (logical_monitor)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell-extension-tiling-assistant/+bug/2050865/+subscriptions


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

[Bug 2066066] Re: cloud-init startup failure with Python 3.9.5, Ubuntu Focal

2024-05-21 Thread James Falcon
"We can test to see if installing python3-jinja2 moved us forward.
Standby."

That's good if that works, but I'm still not sure how this situation
happened. If I run `apt depends cloud-init`, I see `Depends:
python3-jinja2` as one of the dependencies. That means that even if
python3-jinja2 wasn't previously installed, it should get installed by
apt when upgrading cloud-init, and it is already included when launching
an EC2 Focal instance. The library should get written to
/usr/lib/python3/dist-packages/jinja2, so even if you've installed
python3.9 over the default system python, it should still be found
regardless of the python version used.

Do you have the system `python3` or `python` pointing directly to
python3.9? If so, how did it get setup? Is there any other customization
of your environment that you think could be affecting this?

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

Title:
  cloud-init startup failure with Python 3.9.5, Ubuntu Focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066066/+subscriptions


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

[Bug 2066157] Re: cpio 2.13+dfsg-2ubuntu0.4 breaks zfs build (alien command fails)

2024-05-21 Thread James Dingwall
I have confirmed that downgrading cpio to 2.13+dfsg-7 also resolves the
build error in that environment.

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

Title:
  cpio 2.13+dfsg-2ubuntu0.4 breaks zfs build (alien command fails)

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


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

[Bug 2066066] Re: cloud-init startup failure with Python 3.9.5, Ubuntu Focal

2024-05-21 Thread James Falcon
How are you running Python 3.9 in Focal? Are you using the cloud-init
package provided by Apt? Your error shows a crash due to the jinja2
library not existing, but jinja2 is a dependency of cloud-init. The
python3-jinja2 package should have been installed when you installed
cloud-init. Up until now, cloud-init could still run without this
dependency installed, but that doesn't change that it has been a
dependency, so I don't see evidence of a problem here.

** Changed in: cloud-init (Ubuntu)
   Status: Triaged => Incomplete

** Changed in: cloud-init (Ubuntu Focal)
   Status: New => Incomplete

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

Title:
  cloud-init startup failure with Python 3.9.5, Ubuntu Focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066066/+subscriptions


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

[Bug 2066066] Re: cloud-init startup failure with Python 3.9.5, Ubuntu Focal

2024-05-21 Thread James Falcon
** Changed in: cloud-init (Ubuntu)
   Importance: Critical => Undecided

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

Title:
  cloud-init startup failure with Python 3.9.5, Ubuntu Focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066066/+subscriptions


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

[Bug 2066066] Re: cloud-init startup failure with Python 3.9.5, Ubuntu Focal

2024-05-20 Thread James Falcon
** Changed in: cloud-init (Ubuntu)
   Status: New => Triaged

** Changed in: cloud-init (Ubuntu)
   Importance: Undecided => Critical

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

Title:
  cloud-init startup failure with Python 3.9.5, Ubuntu Focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2066066/+subscriptions


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

[Bug 2066157] Re: cpio 2.13+dfsg-2ubuntu0.4 breaks zfs build (alien command fails)

2024-05-20 Thread James Dingwall
** Description changed:

  I'm not sure where the true fault is but the problem only happens after
  updating the cpio package from 2.13+dfsg-2ubuntu0.3 to
  2.13+dfsg-2ubuntu0.3.  The zfs build creates .rpms which are then
  converted to .debs.  The failure message is:
  
  ```
  name=zfs; \
  version=2.1.15-1; \
  arch=`rpm -qp ${name}-kmod-${version}.src.rpm --qf %{arch} | tail -1`; \
  debarch=`dpkg --print-architecture`; \
  pkg1=kmod-${name}*${version}.${arch}.rpm; \
  fakeroot alien --bump=0 --scripts --to-deb --target=$debarch $pkg1 || exit 1; 
\
  rm -f $pkg1
  kmod-zfs-5.15.0-107-generic_2.1.15-1_amd64.deb generated
  kmod-zfs-devel_2.1.15-1_amd64.deb generated
  Unpacking of 'kmod-zfs-devel-5.15.0-107-generic-2.1.15-1.x86_64.rpm' failed 
at /usr/share/perl5/Alien/Package/Rpm.pm line 168,  line 315.
  ```
  
  Looking at the alien source the command that fails is:
  
  ```
- $this->do("rpm2cpio '".$this->filename."' | (cd $workdir; $decomp 
cpio --extract --make-directories --no-absolute-filenames 
--preserve-modification-time) 2>&1")
- or die "Unpacking of '".$this->filename."' failed";
+ $this->do("rpm2cpio '".$this->filename."' | (cd $workdir; $decomp 
cpio --extract --make-directories --no-absolute-filenames 
--preserve-modification-time) 2>&1")
+ or die "Unpacking of '".$this->filename."' failed";
  ```
  
  Examining the content of the .rpm:
  
  ```
  # rpm -qlv kmod-zfs-devel-5.4.0-174-lowlatency-2.1.15-1.x86_64.rpm
  lrwxrwxrwx1 rootroot   34 May 20 09:14 
/usr/src/spl-2.1.15/5.4.0-174-lowlatency -> ../zfs-2.1.15/5.4.0-174-lowlatency
  drwxr-xr-x2 rootroot0 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency
  -rw-r--r--1 rootroot   164782 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/Module.symvers
  lrwxrwxrwx1 rootroot   11 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl.release -> zfs.release
  lrwxrwxrwx1 rootroot   12 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl_config.h -> zfs_config.h
  -rw-r--r--1 rootroot9 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs.release
  -rw-r--r--1 rootroot28937 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs_config.h
  ```
  
  Changing the command being executed for testing purposes:
  
  ```
  # apt-cache policy cpio; rm -rf /tmp/x; mkdir /tmp/x ; rpm2cpio 
kmod-zfs-devel-5.4.0-174-lowlatency-2.1.15-1.x86_64.rpm | (cd /tmp/x; cpio -v 
--extract --make-directories --no-absolute-filenames 
--preserve-modification-time) ; echo $?
  cpio:
-   Installed: 2.13+dfsg-2ubuntu0.3
-   Candidate: 2.13+dfsg-2ubuntu0.4
-   Version table:
-  2.13+dfsg-2ubuntu0.4 500
- 500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal-updates/main amd64 Packages
- 500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/security.ubuntu.com/ubuntu 
focal-security/main amd64 Packages
-  *** 2.13+dfsg-2ubuntu0.3 100
- 100 /var/lib/dpkg/status
-  2.13+dfsg-2 500
- 500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal/main amd64 Packages
+   Installed: 2.13+dfsg-2ubuntu0.3
+   Candidate: 2.13+dfsg-2ubuntu0.4
+   Version table:
+  2.13+dfsg-2ubuntu0.4 500
+ 500 
https://apt-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal-updates/main amd64 Packages
+ 500 
https://apt-mirror-00.ci.zynstra.com/apt/2024-05-19/security.ubuntu.com/ubuntu 
focal-security/main amd64 Packages
+  *** 2.13+dfsg-2ubuntu0.3 100
+ 100 /var/lib/dpkg/status
+  2.13+dfsg-2 500
+ 500 
https://apt-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal/main amd64 Packages
  ./usr/src/spl-2.1.15/5.4.0-174-lowlatency
  ./usr/src/zfs-2.1.15/5.4.0-174-lowlatency
  ./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/Module.symvers
  ./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl.release
  ./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl_config.h
  ./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs.release
  ./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs_config.h
  381 blocks
  0
  ```
  
  vs
  
  ```
  # apt-cache policy cpio; rm -rf /tmp/x; mkdir /tmp/x ; rpm2cpio 
kmod-zfs-devel-5.4.0-174-lowlatency-2.1.15-1.x86_64.rpm | (cd /tmp/x; cpio -v 
--extract --make-directories --no-absolute-filenames 
--preserve-modification-time) ; echo $?
  cpio:
-   Installed: 2.13+dfsg-2ubuntu0.4
-   Candidate: 2.13+dfsg-2ubuntu0.4
-   Version table:
-  *** 2.13+dfsg-2ubuntu0.4 500
- 500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal-updates/main amd64 Packages
- 500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/security.ubuntu.com/ubuntu 
focal-security/main amd64 Packages
- 100 

[Bug 2066157] Re: cpio 2.13+dfsg-2ubuntu0.4 breaks zfs build (alien command fails)

2024-05-20 Thread James Dingwall
This same issue has been observed trying to build in a jammy system with
cpio=2.13+dfsg-7ubuntu0.1.

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

Title:
  cpio 2.13+dfsg-2ubuntu0.4 breaks zfs build (alien command fails)

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


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

[Bug 2066157] [NEW] cpio 2.13+dfsg-2ubuntu0.4 breaks zfs build (alien command fails)

2024-05-20 Thread James Dingwall
Public bug reported:

I'm not sure where the true fault is but the problem only happens after
updating the cpio package from 2.13+dfsg-2ubuntu0.3 to
2.13+dfsg-2ubuntu0.3.  The zfs build creates .rpms which are then
converted to .debs.  The failure message is:

```
name=zfs; \
version=2.1.15-1; \
arch=`rpm -qp ${name}-kmod-${version}.src.rpm --qf %{arch} | tail -1`; \
debarch=`dpkg --print-architecture`; \
pkg1=kmod-${name}*${version}.${arch}.rpm; \
fakeroot alien --bump=0 --scripts --to-deb --target=$debarch $pkg1 || exit 1; \
rm -f $pkg1
kmod-zfs-5.15.0-107-generic_2.1.15-1_amd64.deb generated
kmod-zfs-devel_2.1.15-1_amd64.deb generated
Unpacking of 'kmod-zfs-devel-5.15.0-107-generic-2.1.15-1.x86_64.rpm' failed at 
/usr/share/perl5/Alien/Package/Rpm.pm line 168,  line 315.
```

Looking at the alien source the command that fails is:

```
$this->do("rpm2cpio '".$this->filename."' | (cd $workdir; $decomp cpio 
--extract --make-directories --no-absolute-filenames 
--preserve-modification-time) 2>&1")
or die "Unpacking of '".$this->filename."' failed";
```

Examining the content of the .rpm:

```
# rpm -qlv kmod-zfs-devel-5.4.0-174-lowlatency-2.1.15-1.x86_64.rpm
lrwxrwxrwx1 rootroot   34 May 20 09:14 
/usr/src/spl-2.1.15/5.4.0-174-lowlatency -> ../zfs-2.1.15/5.4.0-174-lowlatency
drwxr-xr-x2 rootroot0 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency
-rw-r--r--1 rootroot   164782 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/Module.symvers
lrwxrwxrwx1 rootroot   11 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl.release -> zfs.release
lrwxrwxrwx1 rootroot   12 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl_config.h -> zfs_config.h
-rw-r--r--1 rootroot9 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs.release
-rw-r--r--1 rootroot28937 May 20 09:14 
/usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs_config.h
```

Changing the command being executed for testing purposes:

```
# apt-cache policy cpio; rm -rf /tmp/x; mkdir /tmp/x ; rpm2cpio 
kmod-zfs-devel-5.4.0-174-lowlatency-2.1.15-1.x86_64.rpm | (cd /tmp/x; cpio -v 
--extract --make-directories --no-absolute-filenames 
--preserve-modification-time) ; echo $?
cpio:
  Installed: 2.13+dfsg-2ubuntu0.3
  Candidate: 2.13+dfsg-2ubuntu0.4
  Version table:
 2.13+dfsg-2ubuntu0.4 500
500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal-updates/main amd64 Packages
500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/security.ubuntu.com/ubuntu 
focal-security/main amd64 Packages
 *** 2.13+dfsg-2ubuntu0.3 100
100 /var/lib/dpkg/status
 2.13+dfsg-2 500
500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal/main amd64 Packages
./usr/src/spl-2.1.15/5.4.0-174-lowlatency
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/Module.symvers
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl.release
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl_config.h
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs.release
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs_config.h
381 blocks
0
```

vs

```
# apt-cache policy cpio; rm -rf /tmp/x; mkdir /tmp/x ; rpm2cpio 
kmod-zfs-devel-5.4.0-174-lowlatency-2.1.15-1.x86_64.rpm | (cd /tmp/x; cpio -v 
--extract --make-directories --no-absolute-filenames 
--preserve-modification-time) ; echo $?
cpio:
  Installed: 2.13+dfsg-2ubuntu0.4
  Candidate: 2.13+dfsg-2ubuntu0.4
  Version table:
 *** 2.13+dfsg-2ubuntu0.4 500
500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal-updates/main amd64 Packages
500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/security.ubuntu.com/ubuntu 
focal-security/main amd64 Packages
100 /var/lib/dpkg/status
 2.13+dfsg-2 500
500 
https://bth-mirror-00.ci.zynstra.com/apt/2024-05-19/archive.ubuntu.com/ubuntu 
focal/main amd64 Packages
cpio: ./usr/src/spl-2.1.15/5.4.0-174-lowlatency: Cannot open: No such file or 
directory
./usr/src/spl-2.1.15/5.4.0-174-lowlatency
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/Module.symvers
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl.release
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/spl_config.h
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs.release
./usr/src/zfs-2.1.15/5.4.0-174-lowlatency/zfs_config.h
381 blocks
2
```

** Affects: cpio (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/2066157

Title:
  cpio 2.13+dfsg-2ubuntu0.4 breaks zfs build (alien command fails)

To manage notifications about this bug go to:

[Bug 2058750] Re: i915 GPU HANG: ecode 12:1:db96edba

2024-05-18 Thread James Chancellor
Hi GuoqingJiang. Sorry for the late response. I'm afraid I am not able
to test with firmware from upstream.

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

Title:
  i915 GPU HANG: ecode 12:1:db96edba

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.5/+bug/2058750/+subscriptions


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

[Bug 2063456] Re: package cephadm: dependency "cephadmlib" missing

2024-05-18 Thread James Page
Note that ceph in oracular FTBFS due to a broken API in the snappy
package which is pending a transition across Debian and Ubuntu.

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

Title:
  package cephadm: dependency "cephadmlib" missing

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


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

[Bug 2064717] Re: ceph-volume needs "packaging" and "ceph" modules

2024-05-18 Thread James Page
Note that ceph in oracular FTBFS due to a broken API in the snappy
package which is pending a transition across Debian and Ubuntu.

** Summary changed:

- ceph-volume needs "packaging" module
+ ceph-volume needs "packaging" and "ceph" modules

** Description changed:

  [ Impact ]
  ceph-volume tool is not usable directly after install due to a missing 
dependencies.
  
  [ Test Plan ]
  sudo apt install ceph-volume
  ceph-volume --help
+ 
+ [ Where problems could occur ]
+ The missing packaging module is immediately obvious - the ceph dependency 
less so as ceph-volume is usually installed with ceph-osd (which already pulls 
this in).  Direct users of ceph-volume will get new depends pulled in.
  
  [ Original Bug Report ]
  The ceph-volume program needs python3-packaging but it looks like we're not 
installing it in jammy-caracal
  
  
https://github.com/ceph/ceph/pull/54423/commits/0985e201342fa53c014a811156aed661b4b8f994
  
https://openstack-ci-reports.ubuntu.com/artifacts/dcf/917920/4/check/jammy-caracal/dcf9973/index.html
  
  Traceback excerpt:
  
  2024-05-02 19:31:54.624912 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 INFO unit.ceph-osd/0.juju-log 
server.go:316 mon:27: osdize cmd: ['ceph-volume', 'lvm', 'create', 
'--osd-fsid', 'aef29aff-df24-4bb8-bfb3-bcd607761b2e', '--bluestore', '--data', 
'ceph-aef29aff-df24-4bb8-bfb3-bcd607761b2e/osd-block-aef29aff-df24-4bb8-bfb3-bcd607761b2e']
  2024-05-02 19:31:54.624972 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 Traceback (most recent call 
last):
  2024-05-02 19:31:54.624990 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File 
"/usr/sbin/ceph-volume", line 33, in 
  2024-05-02 19:31:54.625002 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 
sys.exit(load_entry_point('ceph-volume==1.0.0', 'console_scripts', 
'ceph-volume')())
  2024-05-02 19:31:54.625014 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File 
"/usr/sbin/ceph-volume", line 25, in importlib_load_entry_point
  2024-05-02 19:31:54.625189 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 return 
next(matches).load()
  2024-05-02 19:31:54.625210 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File 
"/usr/lib/python3.10/importlib/metadata/__init__.py", line 171, in load
  2024-05-02 19:31:54.625222 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 module = 
import_module(match.group('module'))
  2024-05-02 19:31:54.625234 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File 
"/usr/lib/python3.10/importlib/__init__.py", line 126, in import_module
  2024-05-02 19:31:54.625247 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 return 
_bootstrap._gcd_import(name[level:], package, level)
  2024-05-02 19:31:54.625259 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File "", line 1050, in _gcd_import
  2024-05-02 19:31:54.625541 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File "", line 1027, in _find_and_load
  2024-05-02 19:31:54.625598 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File "", line 1006, in _find_and_load_unlocked
  2024-05-02 19:31:54.625611 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File "", line 688, in _load_unlocked
  2024-05-02 19:31:54.625622 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File "", line 883, in exec_module
  2024-05-02 19:31:54.625633 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File "", line 241, in _call_with_frames_removed
  2024-05-02 19:31:54.625975 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 

[Bug 2065867] Re: mgr: failed dependency - no module named distutils

2024-05-18 Thread James Page
Note that ceph in oracular FTBFS due to a broken API in the snappy
package which is pending a transition across Debian and Ubuntu.

** Description changed:

  [ Impact ]
  dashboard and volume ceph mgr modules fail to activate under Python 3.12 due 
to use of distutils.
  
  [ Test Plan ]
  sudo snap install -channel latest/edge/core24 microceph
  sudo microceph cluster bootstrap
  sudo microceph status
+ 
+ for proposed testing we'll bake a core24-proposed snap to test with.
  
  [ Where problems could occur ]
  The proposed patch switches to using the vendored distutils in setuptools for 
the two imports in the ceph mgr modules that exhibit this issue - this is a 
minimal fix; codebase really needs refactoring to drop all use of distutils but 
that's outside of the scope on an SRU update.
  
  Other distutils usage gets caught by the distutils_hack that setuptools
  uses to inject its vendored copy into the distutils module location.
  
  [ Original Bug Report ]
  When running microceph on a core24 base, the ceph-mgr has errors on enabling 
specific modules - volume and dashboard.
  
  $ sudo microceph.ceph status
    cluster:
  id: 4e3ff87c-5320-4494-9d3c-42e69cc11398
  health: HEALTH_WARN
  Module 'volumes' has failed dependency: No module named 
'distutils'
  OSD count 0 < osd_pool_default_size 3
  
    services:
  mon: 1 daemons, quorum joplin.glenview.com (age 5s)
  mgr: joplin.glenview.com(active, starting, since 0.942931s)
  osd: 0 osds: 0 up, 0 in
  
    data:
  pools:   0 pools, 0 pgs
  objects: 0 objects, 0 B
  usage:   0 B used, 0 B / 0 B avail
  pgs:
  
  distutils as a standalone package was removed from noble - the ceph
  codebase makes quite a bit of use of distuils still which gets picked up
  by the distutils_hack in setuptools but not in the context of the mgr
  daemon.

** Description changed:

  [ Impact ]
  dashboard and volume ceph mgr modules fail to activate under Python 3.12 due 
to use of distutils.
  
  [ Test Plan ]
- sudo snap install -channel latest/edge/core24 microceph
+ sudo snap install --channel latest/edge/core24 microceph
  sudo microceph cluster bootstrap
  sudo microceph status
  
  for proposed testing we'll bake a core24-proposed snap to test with.
  
  [ Where problems could occur ]
  The proposed patch switches to using the vendored distutils in setuptools for 
the two imports in the ceph mgr modules that exhibit this issue - this is a 
minimal fix; codebase really needs refactoring to drop all use of distutils but 
that's outside of the scope on an SRU update.
  
  Other distutils usage gets caught by the distutils_hack that setuptools
  uses to inject its vendored copy into the distutils module location.
  
  [ Original Bug Report ]
  When running microceph on a core24 base, the ceph-mgr has errors on enabling 
specific modules - volume and dashboard.
  
  $ sudo microceph.ceph status
    cluster:
  id: 4e3ff87c-5320-4494-9d3c-42e69cc11398
  health: HEALTH_WARN
  Module 'volumes' has failed dependency: No module named 
'distutils'
  OSD count 0 < osd_pool_default_size 3
  
    services:
  mon: 1 daemons, quorum joplin.glenview.com (age 5s)
  mgr: joplin.glenview.com(active, starting, since 0.942931s)
  osd: 0 osds: 0 up, 0 in
  
    data:
  pools:   0 pools, 0 pgs
  objects: 0 objects, 0 B
  usage:   0 B used, 0 B / 0 B avail
  pgs:
  
  distutils as a standalone package was removed from noble - the ceph
  codebase makes quite a bit of use of distuils still which gets picked up
  by the distutils_hack in setuptools but not in the context of the mgr
  daemon.

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

Title:
  mgr: failed dependency - no module named distutils

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


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

[Bug 2064717] Re: ceph-volume needs "packaging" module

2024-05-17 Thread James Page
** Also affects: ceph (Ubuntu Oracular)
   Importance: Undecided
   Status: Confirmed

** Also affects: ceph (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Changed in: ceph (Ubuntu Noble)
   Status: New => Triaged

** Changed in: ceph (Ubuntu Oracular)
   Status: Confirmed => Triaged

** Changed in: ceph (Ubuntu Noble)
   Importance: Undecided => High

** Changed in: ceph (Ubuntu Oracular)
   Importance: Undecided => High

** Description changed:

- The ceph-volume program needs python3-packaging but it looks like we're
- not installing it in jammy-caracal
+ [ Impact ]
  
+  * An explanation of the effects of the bug on users and
+ 
+  * justification for backporting the fix to the stable release.
+ 
+  * In addition, it is helpful, but not required, to include an
+explanation of how the upload fixes this bug.
+ 
+ [ Test Plan ]
+ 
+  * detailed instructions how to reproduce the bug
+ 
+  * these should allow someone who is not familiar with the affected
+package to reproduce the bug and verify that the updated package fixes
+the problem.
+ 
+  * if other testing is appropriate to perform before landing this update,
+this should also be described here.
+ 
+ [ Where problems could occur ]
+ 
+  * Think about what the upload changes in the software. Imagine the change is
+wrong or breaks something else: how would this show up?
+ 
+  * It is assumed that any SRU candidate patch is well-tested before
+upload and has a low overall risk of regression, but it's important
+to make the effort to think about what ''could'' happen in the
+event of a regression.
+ 
+  * This must '''never''' be "None" or "Low", or entirely an argument as to why
+your upload is low risk.
+ 
+  * This both shows the SRU team that the risks have been considered,
+and provides guidance to testers in regression-testing the SRU.
+ 
+ [ Other Info ]
+  
+  * Anything else you think is useful to include
+  * Anticipate questions from users, SRU, +1 maintenance, security teams and 
the Technical Board
+  * and address these questions in advance
+ 
+ [ Original Bug Report ]
+ The ceph-volume program needs python3-packaging but it looks like we're not 
installing it in jammy-caracal
  
  
https://github.com/ceph/ceph/pull/54423/commits/0985e201342fa53c014a811156aed661b4b8f994
  
https://openstack-ci-reports.ubuntu.com/artifacts/dcf/917920/4/check/jammy-caracal/dcf9973/index.html
  
  Traceback excerpt:
- 
  
  2024-05-02 19:31:54.624912 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 INFO unit.ceph-osd/0.juju-log 
server.go:316 mon:27: osdize cmd: ['ceph-volume', 'lvm', 'create', 
'--osd-fsid', 'aef29aff-df24-4bb8-bfb3-bcd607761b2e', '--bluestore', '--data', 
'ceph-aef29aff-df24-4bb8-bfb3-bcd607761b2e/osd-block-aef29aff-df24-4bb8-bfb3-bcd607761b2e']
  2024-05-02 19:31:54.624972 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 Traceback (most recent call 
last):
  2024-05-02 19:31:54.624990 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File 
"/usr/sbin/ceph-volume", line 33, in 
  2024-05-02 19:31:54.625002 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 
sys.exit(load_entry_point('ceph-volume==1.0.0', 'console_scripts', 
'ceph-volume')())
  2024-05-02 19:31:54.625014 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File 
"/usr/sbin/ceph-volume", line 25, in importlib_load_entry_point
  2024-05-02 19:31:54.625189 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 return 
next(matches).load()
  2024-05-02 19:31:54.625210 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File 
"/usr/lib/python3.10/importlib/metadata/__init__.py", line 171, in load
  2024-05-02 19:31:54.625222 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 module = 
import_module(match.group('module'))
  2024-05-02 19:31:54.625234 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60   File 
"/usr/lib/python3.10/importlib/__init__.py", line 126, in import_module
  2024-05-02 19:31:54.625247 | focal-medium | 2024-05-02 19:31:54 [ERROR] 
unit-ceph-osd-0.log: 2024-05-02 19:31:52 WARNING 
unit.ceph-osd/0.mon-relation-changed logger.go:60 return 
_bootstrap._gcd_import(name[level:], package, level)
  

[Bug 2063456] Re: package cephadm: dependency "cephadmlib" missing

2024-05-17 Thread James Page
** Description changed:

+ [ Impact ] 
+ cephadm tool is not usable due to files missing from the package.
+ 
+ 
+ [ Test Plan ]
+ sudo apt install cephadm
+ cephadm bootstrap --mon-ip 10.23.127.2
+ 
+ 
+ [ Where problems could occur ]
+ While fixing the minor packaging issue that causes this problem it was also 
noticed that the package is architecture any rather than all (and its pure 
python) so the packaging update includes this as well.
+ 
+ 
+ [ Original Bug Report ]
  After installing cephadm at least on arm64 cephadmlib is missing.
  
  Traceback (most recent call last):
-   File "/usr/sbin/cephadm", line 33, in 
- from cephadmlib.constants import (
+   File "/usr/sbin/cephadm", line 33, in 
+ from cephadmlib.constants import (
  ModuleNotFoundError: No module named 'cephadmlib'
- 
  
  Steps to reproduce (on ARM64)
  
  root@ceph-node1:~# apt install -y cephadm
  Reading package lists... Done
  Building dependency tree... Done
  Reading state information... Done
  The following additional packages will be installed:
-   bridge-utils containerd dns-root-data dnsmasq-base docker.io pigz runc 
ubuntu-fan
+   bridge-utils containerd dns-root-data dnsmasq-base docker.io pigz runc 
ubuntu-fan
  Suggested packages:
-   ifupdown aufs-tools cgroupfs-mount | cgroup-lite debootstrap docker-buildx 
docker-compose-v2
-   docker-doc rinse zfs-fuse | zfsutils
+   ifupdown aufs-tools cgroupfs-mount | cgroup-lite debootstrap docker-buildx 
docker-compose-v2
+   docker-doc rinse zfs-fuse | zfsutils
  The following NEW packages will be installed:
-   bridge-utils cephadm containerd dns-root-data dnsmasq-base docker.io pigz 
runc ubuntu-fan
+   bridge-utils cephadm containerd dns-root-data dnsmasq-base docker.io pigz 
runc ubuntu-fan
  0 upgraded, 9 newly installed, 0 to remove and 0 not upgraded.
- 
  
  root@ceph-node1:~# cephadm bootstrap --mon-ip 10.23.127.2
  
  Traceback (most recent call last):
-   File "/usr/sbin/cephadm", line 33, in 
- from cephadmlib.constants import (
+   File "/usr/sbin/cephadm", line 33, in 
+ from cephadmlib.constants import (
  ModuleNotFoundError: No module named 'cephadmlib'
  
  ProblemType: Bug
  DistroRelease: Ubuntu 24.04
  Package: cephadm 19.2.0~git20240301.4c76c50-0ubuntu6
  ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
  Uname: Linux 6.8.0-31-generic aarch64
  ApportVersion: 2.28.1-0ubuntu2
  Architecture: arm64
  CasperMD5CheckResult: pass
  Date: Thu Apr 25 13:49:50 2024
  InstallationDate: Installed on 2024-04-25 (0 days ago)
  InstallationMedia: Ubuntu-Server 24.04 LTS "Noble Numbat" - Release arm64 
(20240423)
  ProcEnviron:
-  LANG=en_US.UTF-8
-  LC_CTYPE=C.UTF-8
-  PATH=(custom, no user)
-  SHELL=/bin/bash
-  TERM=xterm-256color
+  LANG=en_US.UTF-8
+  LC_CTYPE=C.UTF-8
+  PATH=(custom, no user)
+  SHELL=/bin/bash
+  TERM=xterm-256color
  SourcePackage: ceph
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  package cephadm: dependency "cephadmlib" missing

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


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

[Bug 2065867] Re: mgr: failed dependency - no module named distutils

2024-05-16 Thread James Page
** Description changed:

  [ Impact ]
  dashboard and volume ceph mgr modules fail to activate under Python 3.12 due 
to use of distutils.
  
  [ Test Plan ]
- sudo snap install -channel squid/edge/core24 microceph
+ sudo snap install -channel latest/edge/core24 microceph
  sudo microceph cluster bootstrap
  sudo microceph status
  
  [ Where problems could occur ]
  The proposed patch switches to using the vendored distutils in setuptools for 
the two imports in the ceph mgr modules that exhibit this issue - this is a 
minimal fix; codebase really needs refactoring to drop all use of distutils but 
that's outside of the scope on an SRU update.
  
  Other distutils usage gets caught by the distutils_hack that setuptools
  uses to inject its vendored copy into the distutils module location.
  
  [ Original Bug Report ]
  When running microceph on a core24 base, the ceph-mgr has errors on enabling 
specific modules - volume and dashboard.
  
  $ sudo microceph.ceph status
    cluster:
  id: 4e3ff87c-5320-4494-9d3c-42e69cc11398
  health: HEALTH_WARN
  Module 'volumes' has failed dependency: No module named 
'distutils'
  OSD count 0 < osd_pool_default_size 3
  
    services:
  mon: 1 daemons, quorum joplin.glenview.com (age 5s)
  mgr: joplin.glenview.com(active, starting, since 0.942931s)
  osd: 0 osds: 0 up, 0 in
  
    data:
  pools:   0 pools, 0 pgs
  objects: 0 objects, 0 B
  usage:   0 B used, 0 B / 0 B avail
  pgs:
  
  distutils as a standalone package was removed from noble - the ceph
  codebase makes quite a bit of use of distuils still which gets picked up
  by the distutils_hack in setuptools but not in the context of the mgr
  daemon.

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

Title:
  mgr: failed dependency - no module named distutils

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


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

[Bug 2065867] Re: mgr: failed dependency - no module named distutils

2024-05-16 Thread James Page
** Description changed:

- [ Impact ] 
+ [ Impact ]
  dashboard and volume ceph mgr modules fail to activate under Python 3.12 due 
to use of distutils.
  
  [ Test Plan ]
- Deploy ceph-mon charm to three machines using Juju on Ubuntu 24.04.
- sudo ceph status
- "Module 'volumes' has failed dependency: No module named 'distutils'" present 
in output (this is the last module to fail loading"
+ sudo snap install -channel squid/edge/core24 microceph
+ sudo microceph cluster bootstrap
+ sudo microceph status
  
  [ Where problems could occur ]
  The proposed patch switches to using the vendored distutils in setuptools for 
the two imports in the ceph mgr modules that exhibit this issue - this is a 
minimal fix; codebase really needs refactoring to drop all use of distutils but 
that's outside of the scope on an SRU update.
  
  Other distutils usage gets caught by the distutils_hack that setuptools
  uses to inject its vendored copy into the distutils module location.
  
  [ Original Bug Report ]
  When running on noble with the snapshot of squid, the ceph-mgr has errors on 
enabling specific modules - volume and dashboard.
  
  $ sudo microceph.ceph status
    cluster:
  id: 4e3ff87c-5320-4494-9d3c-42e69cc11398
  health: HEALTH_WARN
  Module 'volumes' has failed dependency: No module named 
'distutils'
  OSD count 0 < osd_pool_default_size 3
  
    services:
  mon: 1 daemons, quorum joplin.glenview.com (age 5s)
  mgr: joplin.glenview.com(active, starting, since 0.942931s)
  osd: 0 osds: 0 up, 0 in
  
    data:
  pools:   0 pools, 0 pgs
  objects: 0 objects, 0 B
  usage:   0 B used, 0 B / 0 B avail
  pgs:
  
  distutils as a standalone package was removed from noble - the ceph
  codebase makes quite a bit of use of distuils still which gets picked up
  by the distutils_hack in setuptools but not in the context of the mgr
  daemon.

** Description changed:

  [ Impact ]
  dashboard and volume ceph mgr modules fail to activate under Python 3.12 due 
to use of distutils.
  
  [ Test Plan ]
  sudo snap install -channel squid/edge/core24 microceph
  sudo microceph cluster bootstrap
  sudo microceph status
  
  [ Where problems could occur ]
  The proposed patch switches to using the vendored distutils in setuptools for 
the two imports in the ceph mgr modules that exhibit this issue - this is a 
minimal fix; codebase really needs refactoring to drop all use of distutils but 
that's outside of the scope on an SRU update.
  
  Other distutils usage gets caught by the distutils_hack that setuptools
  uses to inject its vendored copy into the distutils module location.
  
  [ Original Bug Report ]
- When running on noble with the snapshot of squid, the ceph-mgr has errors on 
enabling specific modules - volume and dashboard.
+ When running microceph on a core24 base, the ceph-mgr has errors on enabling 
specific modules - volume and dashboard.
  
  $ sudo microceph.ceph status
    cluster:
  id: 4e3ff87c-5320-4494-9d3c-42e69cc11398
  health: HEALTH_WARN
  Module 'volumes' has failed dependency: No module named 
'distutils'
  OSD count 0 < osd_pool_default_size 3
  
    services:
  mon: 1 daemons, quorum joplin.glenview.com (age 5s)
  mgr: joplin.glenview.com(active, starting, since 0.942931s)
  osd: 0 osds: 0 up, 0 in
  
    data:
  pools:   0 pools, 0 pgs
  objects: 0 objects, 0 B
  usage:   0 B used, 0 B / 0 B avail
  pgs:
  
  distutils as a standalone package was removed from noble - the ceph
  codebase makes quite a bit of use of distuils still which gets picked up
  by the distutils_hack in setuptools but not in the context of the mgr
  daemon.

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

Title:
  mgr: failed dependency - no module named distutils

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


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

[Bug 2065867] Re: mgr: failed dependency - no module named distutils

2024-05-16 Thread James Page
** Description changed:

- When running on noble with the snapshot of squid, the ceph-mgr has
- errors on enabling specific modules - volume and dashboard.
+ [ Impact ] 
+ dashboard and volume ceph mgr modules fail to activate under Python 3.12 due 
to use of distutils.
+ 
+ [ Test Plan ]
+ Deploy ceph-mon charm to three machines using Juju on Ubuntu 24.04.
+ sudo ceph status
+ "Module 'volumes' has failed dependency: No module named 'distutils'" present 
in output (this is the last module to fail loading"
+ 
+ [ Where problems could occur ]
+ The proposed patch switches to using the vendored distutils in setuptools for 
the two imports in the ceph mgr modules that exhibit this issue - this is a 
minimal fix; codebase really needs refactoring to drop all use of distutils but 
that's outside of the scope on an SRU update.
+ 
+ Other distutils usage gets caught by the distutils_hack that setuptools
+ uses to inject its vendored copy into the distutils module location.
+ 
+ [ Original Bug Report ]
+ When running on noble with the snapshot of squid, the ceph-mgr has errors on 
enabling specific modules - volume and dashboard.
  
  $ sudo microceph.ceph status
-   cluster:
- id: 4e3ff87c-5320-4494-9d3c-42e69cc11398
- health: HEALTH_WARN
- Module 'volumes' has failed dependency: No module named 
'distutils'
- OSD count 0 < osd_pool_default_size 3
-  
-   services:
- mon: 1 daemons, quorum joplin.glenview.com (age 5s)
- mgr: joplin.glenview.com(active, starting, since 0.942931s)
- osd: 0 osds: 0 up, 0 in
-  
-   data:
- pools:   0 pools, 0 pgs
- objects: 0 objects, 0 B
- usage:   0 B used, 0 B / 0 B avail
- pgs:   
+   cluster:
+ id: 4e3ff87c-5320-4494-9d3c-42e69cc11398
+ health: HEALTH_WARN
+ Module 'volumes' has failed dependency: No module named 
'distutils'
+ OSD count 0 < osd_pool_default_size 3
+ 
+   services:
+ mon: 1 daemons, quorum joplin.glenview.com (age 5s)
+ mgr: joplin.glenview.com(active, starting, since 0.942931s)
+ osd: 0 osds: 0 up, 0 in
+ 
+   data:
+ pools:   0 pools, 0 pgs
+ objects: 0 objects, 0 B
+ usage:   0 B used, 0 B / 0 B avail
+ pgs:
  
  distutils as a standalone package was removed from noble - the ceph
  codebase makes quite a bit of use of distuils still which gets picked up
  by the distutils_hack in setuptools but not in the context of the mgr
  daemon.

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

Title:
  mgr: failed dependency - no module named distutils

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


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

[Bug 2065874] [NEW] Can't update firmware on TPM-backed FDE systems

2024-05-16 Thread James Paton-Smith
Public bug reported:

This was previously reported here: 
https://github.com/canonical/ubuntu-desktop-installer/issues/2371
But I think that bug report and those posted in other projects don't seem to be 
getting attention.

With the new TPM-backed FDE storage layout for Ubuntu 24.04, it is
seemingly impossible to perform firmware updates using fwupd.

Attempting to upgrade the firmware with `fwupdmgr upgrade XX` gives
the attached error message.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: fwupd 1.9.16-1
ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
Uname: Linux 6.8.0-31-generic x86_64
ApportVersion: 2.28.1-0ubuntu3
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Thu May 16 11:25:24 2024
ProcEnviron:
 LANG=en_GB.UTF-8
 PATH=(custom, no user)
 SHELL=/usr/local/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: fwupd
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.fwupd.fwupd.conf: [inaccessible: [Errno 13] Permission 
denied: '/etc/fwupd/fwupd.conf']

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


** Tags: amd64 apport-bug noble wayland-session

** Attachment added: "fwupd_error.txt"
   
https://bugs.launchpad.net/bugs/2065874/+attachment/5778971/+files/fwupd_error.txt

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

Title:
  Can't update firmware on TPM-backed FDE systems

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


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

[Bug 2063322] Re: ite-cir driver failed to load due to a regression in linux kernel 6.5+ serial driver change

2024-05-16 Thread James Joseph
Added kernel package team to review the bug as there hasn't been any
visibility from this yet.

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

Title:
  ite-cir driver failed to load due to a regression in linux kernel 6.5+
  serial driver change

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


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

[Bug 2065867] [NEW] mgr: failed dependency - no module named distutils

2024-05-16 Thread James Page
Public bug reported:

When running on noble with the snapshot of squid, the ceph-mgr has
errors on enabling specific modules - volume and dashboard.

$ sudo microceph.ceph status
  cluster:
id: 4e3ff87c-5320-4494-9d3c-42e69cc11398
health: HEALTH_WARN
Module 'volumes' has failed dependency: No module named 'distutils'
OSD count 0 < osd_pool_default_size 3
 
  services:
mon: 1 daemons, quorum joplin.glenview.com (age 5s)
mgr: joplin.glenview.com(active, starting, since 0.942931s)
osd: 0 osds: 0 up, 0 in
 
  data:
pools:   0 pools, 0 pgs
objects: 0 objects, 0 B
usage:   0 B used, 0 B / 0 B avail
pgs:   

distutils as a standalone package was removed from noble - the ceph
codebase makes quite a bit of use of distuils still which gets picked up
by the distutils_hack in setuptools but not in the context of the mgr
daemon.

** Affects: ceph (Ubuntu)
 Importance: High
 Status: Triaged

** Affects: ceph (Ubuntu Noble)
 Importance: High
 Status: Triaged

** Affects: ceph (Ubuntu Oracular)
 Importance: High
 Status: Triaged

** Also affects: ceph (Ubuntu Oracular)
   Importance: Undecided
   Status: New

** Also affects: ceph (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Changed in: ceph (Ubuntu Noble)
   Status: New => Triaged

** Changed in: ceph (Ubuntu Oracular)
   Status: New => Triaged

** Changed in: ceph (Ubuntu Noble)
   Importance: Undecided => High

** Changed in: ceph (Ubuntu Oracular)
   Importance: Undecided => High

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

Title:
  mgr: failed dependency - no module named distutils

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


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

[Bug 2063456] Re: package cephadm: dependency "cephadmlib" missing

2024-05-16 Thread James Page
We're currently blocked in oracular by a broken snappy package and a
pending transition to resolve the issues its created:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1070977

As such I'd like to move forward with the SRU for noble as we need to
resolve issues for those testing in preparation for migration to the new
LTS

** Bug watch added: Debian Bug tracker #1070977
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1070977

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

Title:
  package cephadm: dependency "cephadmlib" missing

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


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

[Bug 2008157] Re: [SRU][Ubuntu 22.04.1]: Observed "Array Index out of bounds" Call Trace multiple times on Ubuntu 22.04.1 OS during boot

2024-05-15 Thread James Dingwall
I've had a look at the x86 code where this error comes from:

/* Returns a pointer to the cpumask of CPUs on Node 'node'. */
static inline const struct cpumask *cpumask_of_node(int node)
{
return node_to_cpumask_map[node];
}


So it seems the error arises because it is asked for a negative index from the 
node_to_cpumask_map array.  Interestingly the same name for sparc has handling 
for the case the argument is -1:

#define cpumask_of_node(node) ((node) == -1 ?   \
   cpu_all_mask :   \
   _cpumask_lookup_table[node])

and so does powerpc:

#define cpumask_of_node(node) ((node) == -1 ?   \
   cpu_all_mask :   \
   node_to_cpumask_map[node])


in drivers/base/arch_numa.c there is a debug version for this name which 
returns cpu_all_mask as sparc and powerpc for NUMA_NO_NODE 
(include/linux/numa.h:#define NUMA_NO_NODE(-1)):


#ifdef CONFIG_DEBUG_PER_CPU_MAPS

/*
 * Returns a pointer to the bitmask of CPUs on Node 'node'.
 */
const struct cpumask *cpumask_of_node(int node)
{
 
if (node == NUMA_NO_NODE)
return cpu_all_mask;

if (WARN_ON(node < 0 || node >= nr_node_ids))
return cpu_none_mask;

if (WARN_ON(node_to_cpumask_map[node] == NULL))
return cpu_online_mask;

return node_to_cpumask_map[node];
}
EXPORT_SYMBOL(cpumask_of_node);

#endif


Based on these alternative implementations it seems as though cpumask_of_node 
for x86 should be something like:

/* Returns a pointer to the cpumask of CPUs on Node 'node'. */
static inline const struct cpumask *cpumask_of_node(int node)
{
return node == -1 ? cpu_all_mask : node_to_cpumask_map[node];
}

I have insufficient knowledge about this stuff to say that is definitely
the case though.

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

Title:
  [SRU][Ubuntu 22.04.1]: Observed "Array Index out of bounds" Call Trace
  multiple times on Ubuntu 22.04.1 OS during boot

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


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

[Bug 2008157] Re: [SRU][Ubuntu 22.04.1]: Observed "Array Index out of bounds" Call Trace multiple times on Ubuntu 22.04.1 OS during boot

2024-05-14 Thread James Dingwall
I have also encountered the same trace reported in
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2008157/comments/15
on a Dell R450 system:


# lspci -vv -s 65:00.0
65:00.0 RAID bus controller: Broadcom / LSI MegaRAID 12GSAS/PCIe Secure SAS38xx
DeviceName: SL3 RAID
Subsystem: Dell MegaRAID 12GSAS/PCIe Secure SAS38xx
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR-  [disabled]
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA 
PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+
Address:   Data: 
Masking:   Pending: 
Capabilities: [70] Express (v2) Endpoint, MSI 00
DevCap: MaxPayload 1024 bytes, PhantFunc 0, Latency L0s 
unlimited, L1 <64us
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ 
SlotPowerLimit 0.000W
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq+
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ FLReset-
MaxPayload 512 bytes, MaxReadReq 4096 bytes
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- 
TransPend-
LnkCap: Port #0, Speed 16GT/s, Width x8, ASPM L0s L1, Exit 
Latency L0s unlimited, L1 <64us
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 16GT/s (ok), Width x8 (ok)
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+, 
NROPrPrP-, LTR-
 10BitTagComp+, 10BitTagReq-, OBFF Not Supported, 
ExtFmt-, EETLPPrefix-
 EmergencyPowerReduction Not Supported, 
EmergencyPowerReductionInit-
 FRS-, TPHComp-, ExtTPHComp-
 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-, LTR-, 
OBFF Disabled
 AtomicOpsCtl: ReqEn-
LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
 Transmit Margin: Normal Operating Range, 
EnterModifiedCompliance- ComplianceSOS-
 Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -3.5dB, 
EqualizationComplete+, EqualizationPhase1+
 EqualizationPhase2+, EqualizationPhase3+, 
LinkEqualizationRequest-
Capabilities: [b0] MSI-X: Enable+ Count=128 Masked-
Vector table: BAR=0 offset=2000
PBA: BAR=0 offset=3000
Capabilities: [100 v2] Advanced Error Reporting
UESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- 
RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ 
RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt+ UnxCmplt- 
RxOF+ MalfTLP+ ECRC+ UnsupReq- ACSViol-
CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- 
AdvNonFatalErr+
CEMsk:  RxErr+ BadTLP+ BadDLLP+ Rollover+ Timeout+ 
AdvNonFatalErr+
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn+ 
ECRCChkCap+ ECRCChkEn+
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog:    
Capabilities: [148 v1] Power Budgeting 
Capabilities: [158 v1] Alternative Routing-ID Interpretation (ARI)
ARICap: MFVC- ACS-, Next Function: 0
ARICtl: MFVC- ACS-, Function Group: 0
Capabilities: [168 v1] Secondary PCI Express
LnkCtl3: LnkEquIntrruptEn-, PerformEqu-
LaneErrStat: 0
Capabilities: [188 v1] Physical Layer 16.0 GT/s 
Capabilities: [1b0 v1] Lane Margining at the Receiver 
Capabilities: [248 v1] Vendor Specific Information: ID=0002 Rev=4 
Len=100 
Capabilities: [348 v1] Vendor Specific Information: ID=0001 Rev=1 
Len=038 
Capabilities: [380 v1] Data Link Feature 
Kernel driver in use: megaraid_sas
Kernel modules: megaraid_sas


# uname -a
Linux hostname 5.15.0-107-generic #117~20.04.1 SMP Fri May 3 10:35:25 UTC 2024 
x86_64 x86_64 x86_64 GNU/Linux
(locally compiled, not official packages)


# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 20.04.6 LTS
Release:20.04
Codename:   focal

[   20.730599] 

[Bug 2018504] Re: cups-browsed is using an excessive amount of CPU

2024-05-14 Thread James Henstridge
Please file a new bug. If you run "ubuntu-bug cups-browsed" to start
writing your report, it'll automatically include some relevant
diagnostics. If there are any relevant log messages in the journal, that
would be useful too.

Marking a bug as duplicate is very easy to do. Untangling two problems
that have been mixed into one bug report is a lot harder.

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

Title:
  cups-browsed is using an excessive amount of CPU

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups-browsed/+bug/2018504/+subscriptions


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

[Bug 2018504] Re: cups-browsed is using an excessive amount of CPU

2024-05-14 Thread James Henstridge
@Raffaele: I'm not saying that there isn't a problem: rather that the
cause is probably different to the one from this closed bug, even if the
symptom is the same.

You'd be better off reporting a new bug, or looking through the open bug
reports to see if any of those match what you're seeing.

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

Title:
  cups-browsed is using an excessive amount of CPU

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups-browsed/+bug/2018504/+subscriptions


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

[Bug 2018504] Re: cups-browsed is using an excessive amount of CPU

2024-05-13 Thread James Henstridge
Note that the problem this bug was opened to address was fixed in an
update to 23.04.

If you are seeing a problem on 24.04, it is most likely a different
issue (possibly bug 2049315). Comments on long closed bug reports are
likely to be missed.

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

Title:
  cups-browsed is using an excessive amount of CPU

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups-browsed/+bug/2018504/+subscriptions


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

[Bug 2065567] [NEW] Vague error message for invalid sources

2024-05-13 Thread James Paton-Smith
Public bug reported:

This is more like a quality-of-life issue. If you have a source
configured which is broken (gpg key error, no release information,
etc.), update-manager will provide a vague error message that doesn't
really help users identify the problem.

See attached screenshot.

Ideally, update-manager should at least display which sources are causing the 
error to help track down the problem.
The error message also isn't clear that this doesn't prevent you from updating 
the system. If you click OK you can still upgrade packages from the remaining 
correctly configured sources.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: update-manager 1:24.04.6
ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
Uname: Linux 6.8.0-31-generic x86_64
ApportVersion: 2.28.1-0ubuntu3
Aptdaemon:
 
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Mon May 13 09:32:10 2024
DpkgTerminalLog.txt: Error: [Errno 13] Permission denied: 
'/var/log/apt/term.log'
GsettingsChanges:
 b'com.ubuntu.update-manager' b'launch-count' b'5'
 b'com.ubuntu.update-manager' b'launch-time' b'int64 1715589118'
 b'com.ubuntu.update-manager' b'show-details' b'true'
 b'com.ubuntu.update-manager' b'window-width' b'593'
PackageArchitecture: all
ProcEnviron:
 LANG=en_GB.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: update-manager
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug noble wayland-session

** Attachment added: "Screenshot from 2024-05-13 09-30-54.png"
   
https://bugs.launchpad.net/bugs/2065567/+attachment/5777831/+files/Screenshot%20from%202024-05-13%2009-30-54.png

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

Title:
  Vague error message for invalid sources

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


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

[Bug 2063456] Re: package cephadm: dependency "cephadmlib" missing

2024-05-11 Thread James Page
Updates are prepped but currently blocked by a broken snappy in oracular
- the fix for that is pending review in Debian (as it creates a
transition requirement) at which point we should be able to proceed with
the required updates for the SRU to noble as well.

Please note that the packages in Noble are a snapshot, not the final
release for Squid.

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

Title:
  package cephadm: dependency "cephadmlib" missing

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


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

[Bug 2065515] [NEW] [SRU} Ceph Squid release

2024-05-11 Thread James Page
Public bug reported:

TBC

** Affects: ceph (Ubuntu)
 Importance: High
 Status: Triaged

** Affects: ceph (Ubuntu Noble)
 Importance: High
 Status: Triaged

** Affects: ceph (Ubuntu Oracular)
 Importance: High
 Status: Triaged

** Also affects: ceph (Ubuntu Oracular)
   Importance: Undecided
   Status: New

** Also affects: ceph (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Changed in: ceph (Ubuntu Noble)
   Status: New => Triaged

** Changed in: ceph (Ubuntu Oracular)
   Status: New => Triaged

** Changed in: ceph (Ubuntu Noble)
   Importance: Undecided => High

** Changed in: ceph (Ubuntu Oracular)
   Importance: Undecided => High

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

Title:
  [SRU} Ceph Squid release

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


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

[Bug 2042301] Re: Windows are slow to open shortly after login under X11 session

2024-05-10 Thread Seb James
I see the same behaviour on 23.10:

-- Boot 59578cca6bcf4df3a3266c0da78a053f --
May 07 16:20:19 mylaptop systemd[2503]: Starting xdg-desktop-portal.service - 
Portal service...
May 07 16:21:09 mylaptop xdg-desktop-por[2885]: Failed to create settings 
proxy: Error calling StartServiceByName for 
org.freedesktop.impl.portal.desktop.gnome: Timeout w>
May 07 16:21:35 mylaptop xdg-desktop-por[2885]: Failed to create file chooser 
proxy: Error calling StartServiceByName for 
org.freedesktop.impl.portal.desktop.gnome: Timeo>
May 07 16:21:35 mylaptop xdg-desktop-por[2885]: No skeleton to export
May 07 16:21:50 mylaptop systemd[2503]: xdg-desktop-portal.service: start 
operation timed out. Terminating.
May 07 16:21:50 mylaptop systemd[2503]: xdg-desktop-portal.service: Failed with 
result 'timeout'.
May 07 16:21:50 mylaptop systemd[2503]: Failed to start 
xdg-desktop-portal.service - Portal service.
May 07 16:22:19 mylaptop systemd[2503]: Starting xdg-desktop-portal.service - 
Portal service...
May 07 16:22:20 mylaptop systemd[2503]: Started xdg-desktop-portal.service - 
Portal service.
May 07 16:23:57 mylaptop systemd[2503]: Stopping xdg-desktop-portal.service - 
Portal service...

I have updated mutter to a pending fixed version from ppa:vanvugt/mutter
(https://launchpad.net/~vanvugt/+archive/ubuntu/mutter which aims to fix
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/2059847) and
rebooted.

seb@mylaptop:~$ apt list nvidia-driver-535 mutter libmutter-13-0 gnome-shell
Listing... Done
gnome-shell/mantic-updates,mantic-security,now 45.2-0ubuntu1.1 amd64 
[installed,automatic]
libmutter-13-0/mantic,now 45.2-0ubuntu4vv1 amd64 [installed,automatic]
mutter/mantic 45.2-0ubuntu4vv1 amd64
nvidia-driver-535/mantic-updates,mantic-security,now 
535.171.04-0ubuntu0.23.10.1 amd64 [installed]


Unfortunately this bug persists.

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

Title:
  Windows are slow to open shortly after login under X11 session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-535/+bug/2042301/+subscriptions


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

[Bug 2065139] Re: nvidia-dkms-545 545.29.06-0ubuntu0.22.04.2: nvidia kernel module failed to build

2024-05-09 Thread James Beal
https://forums.developer.nvidia.com/t/linux-6-7-3-545-29-06-550-40-07-error-
modpost-gpl-incompatible-module-nvidia-ko-uses-gpl-only-symbol-rcu-read-
lock/280908?page=2

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

Title:
  nvidia-dkms-545 545.29.06-0ubuntu0.22.04.2: nvidia kernel module
  failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-545/+bug/2065139/+subscriptions


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

[Bug 2064676] Re: Firefox snap cannot open files in Samba share

2024-05-09 Thread James Seiters
I have fixed the share permissions after filling a bug report with the
SMB4K maintainers and Firefox works with the changed permissions.

I am still curious if not being able to open files owned by root in a
user's home directory is expected behavior for snap applications. The
exact permissions were:

-rwxr-xr-x  1 root root 2301 Apr 29 09:09 about.html*

I can open the file with a non-snap app such as Kate.

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

Title:
  Firefox snap cannot open files in Samba share

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


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

[Bug 2065280] [NEW] libsnappy-dev: Ambiguity in Compress method signatures causes FTBFS in ceph

2024-05-09 Thread James Page
Public bug reported:

Imported from Debian bug http://bugs.debian.org/1070785:

Package: libsnappy-dev
Version: 1.2.0-2
Severity: important
Tags: ftbfs
X-Debbugs-Cc: james.p...@ubuntu.com

Dear Maintainer,

The patch added to restore older API signatures to resolve Bug 1070217
creates ambiguity in the method signatures resulting in FTBFS in at
least the ceph package:

In file included from 
/<>/src/compressor/snappy/CompressionPluginSnappy.h:20,
 from 
/<>/src/compressor/snappy/CompressionPluginSnappy.cc:20:
/<>/src/compressor/snappy/SnappyCompressor.h: In member function 
‘virtual int SnappyCompressor::compress(const ceph::bufferlist&, 
ceph::bufferlist&, std::optional&)’:
/<>/src/compressor/snappy/SnappyCompressor.h:68:21: error: call of 
overloaded ‘Compress(BufferlistSource*, snappy::UncheckedByteArraySink*)’ is 
ambiguous
   68 | snappy::Compress(, );
  | ^~~~
In file included from 
/<>/src/compressor/snappy/SnappyCompressor.h:18:
/usr/include/snappy.h:81:10: note: candidate: ‘size_t snappy::Compress(Source*, 
Sink*)’
   81 |   size_t Compress(Source* reader, Sink* writer);
  |  ^~~~
/usr/include/snappy.h:82:10: note: candidate: ‘size_t snappy::Compress(Source*, 
Sink*, CompressionOptions)’
   82 |   size_t Compress(Source* reader, Sink* writer,
  |  ^~~~
make[3]: *** [src/compressor/snappy/CMakeFiles/ceph_snappy.dir/build.make:79: 
src/compressor/snappy/CMakeFiles/ceph_snappy.dir/CompressionPluginSnappy.cc.o] 
Error 1
make[3]: Leaving directory '/<>/obj-x86_64-linux-gnu'
make[2]: *** [CMakeFiles/Makefile2:7668: 
src/compressor/snappy/CMakeFiles/ceph_snappy.dir/all] Error 2

The compression options parameter which was added for >= 1.2 of snappy
provides a default, so the added method with no options creates this
ambiguity.

Thanks!

-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libsnappy-dev depends on:
ii  libsnappy1v5  1.2.0-2

libsnappy-dev recommends no packages.

libsnappy-dev suggests no packages.

-- no debconf information

** Affects: snappy (Ubuntu)
 Importance: High
 Status: Triaged

** Affects: snappy (Debian)
 Importance: Undecided
 Status: New

** Bug watch added: Debian Bug tracker #1070785
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1070785

** Changed in: snappy (Debian)
 Remote watch: None => Debian Bug tracker #1070785

** Changed in: snappy (Ubuntu)
   Status: New => Triaged

** Changed in: snappy (Ubuntu)
   Importance: Undecided => High

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

Title:
  libsnappy-dev: Ambiguity in Compress method signatures causes FTBFS in
  ceph

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


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

[Bug 2065139] Re: nvidia-dkms-545 545.29.06-0ubuntu0.22.04.2: nvidia kernel module failed to build

2024-05-08 Thread James Beal
Running 5.15.0-106-generic

apt-get install cuda-drivers-525
...
Building initial module for 5.15.0-106-generic
ERROR: Cannot create report: [Errno 17] File exists: 
'/var/crash/nvidia-dkms-525.0.crash'
Error! Bad return status for module build on kernel: 5.15.0-106-generic (x86_64)
Consult /var/lib/dkms/nvidia/525.147.05/build/make.log for more information.
dpkg: error processing package nvidia-dkms-525 (--configure):
 installed nvidia-dkms-525 package post-installation script subprocess returned 
error exit status 10
dpkg: dependency problems prevent configuration of cuda-drivers-525:
 cuda-drivers-525 depends on nvidia-dkms-525 (>= 525.147.05); however:
  Package nvidia-dkms-525 is not configured yet.

...
In the log
make -f ./scripts/Makefile.modpost
  sed 's/\.ko$/\.o/' /var/lib/dkms/nvidia/525.147.05/build/modules.order | 
scripts/mod/modpost -m -a  -o 
/var/lib/dkms/nvidia/525.147.05/build/Module.symvers -e -i Module.symvers   -T -
ERROR: modpost: GPL-incompatible module nvidia.ko uses GPL-only symbol 
'rcu_read_unlock_strict'
make[2]: *** [scripts/Makefile.modpost:133: 
/var/lib/dkms/nvidia/525.147.05/build/Module.symvers] Error 1
make[2]: *** Deleting file 
'/var/lib/dkms/nvidia/525.147.05/build/Module.symvers'
make[1]: *** [Makefile:1830: modules] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-5.15.0-106-generic'
make: *** [Makefile:82: modules] Error 2
root@dgx-c11-01:~#

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

Title:
  nvidia-dkms-545 545.29.06-0ubuntu0.22.04.2: nvidia kernel module
  failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-545/+bug/2065139/+subscriptions


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

[Bug 2064096] Re: Services fail to start in noble deployed with TPM+FDE

2024-05-03 Thread James Paton-Smith
On my test VM I can see the cupsd profile DOES have 'attach_disconnected' flag, 
but not 'attach_disconnected.path=/run/'
If I add it and restart the cups.service, it starts successfully.

rsyslogd and sssd apparmor profiles do not have either these flags.


Could an apparmor abstraction work for this? i.e. if the system has 
'boot-managed-by-snapd' package we could pull in an apparmor abstraction which 
adds these flags? Not sure what would be appropriate.

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

Title:
  Services fail to start in noble deployed with TPM+FDE

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


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

[Bug 2064300] Re: cli behavior changed for commands passing optional --file argument to cloud-init init, modules or single subcommand

2024-05-02 Thread James Falcon
** Description changed:

  [ Impact ]
  
-  * Environments or scripts which directly call cloud-init subcommands and
-provide an optional -f or --file argument to inject supplemental
-configuration after first boot will receive usage errors on the command
-line which will break any supplemental scripted setup of configuration.
-This affects some platforms which may provide secondary configuration after
-cloud-init's first boot.
+  * Environments or scripts which directly call cloud-init subcommands and
+    provide an optional -f or --file argument to inject supplemental
+    configuration after first boot will receive usage errors on the command
+    line which will break any supplemental scripted setup of configuration.
+    This affects some platforms which may provide secondary configuration after
+    cloud-init's first boot.
  
-Workaround:
-Upstream cloud-init requires -f/--file arguments come after the
-subcommand instead of before. Change the order of these parameters, placing
--f or --file after the subcommand as a workaround while awaiting an SRU 
fix.
+    Workaround:
+    Upstream cloud-init requires -f/--file arguments come after the
+    subcommand instead of before. Change the order of these parameters, placing
+    -f or --file after the subcommand as a workaround while awaiting an SRU 
fix.
  
-  * Direct calls to cloud-init init, modules or single are atypical for most
-deployments because automated configuration generally relies on
-cloud-init systemd units running the various boot stages invoking the
-cloud-init CLI directly. But, to better support custom environments which
-need to provide an additional layer of configuration after first boot, this
-change in behavior is something we would like to resolve on stable 
releases.
+  * Direct calls to cloud-init init, modules or single are atypical for most
+    deployments because automated configuration generally relies on
+    cloud-init systemd units running the various boot stages invoking the
+    cloud-init CLI directly. But, to better support custom environments which
+    need to provide an additional layer of configuration after first boot, this
+    change in behavior is something we would like to resolve on stable 
releases.
  
  [ Test Plan ]
  
-  * Launch daily images in LXC and confirm usage failure inf cloud-init 24.1.3
-when providing supplemental file config before the init subcommand:
-cloud-init -f myfile.yaml init
+  * Launch daily images in LXC and confirm usage failure inf cloud-init 24.1.3
+    when providing supplemental file config before the init subcommand:
+    cloud-init -f myfile.yaml init
  
-$ cat > myfile.yaml < myfile.yaml < setup_proposed.sh  setup_proposed.sh 

[Bug 2064676] [NEW] Firefox snap cannot open files in Samba share

2024-05-02 Thread James Seiters
Public bug reported:

I have a Samba share that is mounted by SMB4K. All of the other apps on my 
system can open the HTML files stored there except Firefox. When I try to open 
a file I get a Access to the file was denied error page in Firefox. The system 
log reports:
kernel: audit: type=1400 audit(1714687117.353:184): apparmor="DENIED" 
operation="open" class="file" profile="snap.firefox.firefox" 
name=2F686F6D652F6A736569746572732F736D62346B2F4F4653414D425345525630303030312F4E6164656E652F576F726B2F53656C662D5075626C697368696E672047656E69652F4A6F62732F4546412F4B6576696E204D6347617272792F46696E616C20446F63756D656E74732F455055422F636861707465725F312E68746D6C
 pid=2939 comm=53747265616D5472616E7320233430 requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=0

The user and group on the mounted directory is root. This is a new issue
that started to occur in kubuntu 23.10. I am currently running kubuntu
24.04 and still getting this error. Previously I was able to view these
files.

My lsb_release -rd:
o LSB modules are available.
Description:Ubuntu 24.04 LTS
Release:24.04

What I expect to happen:
Firefox should open the HTML files on the mounted Samba share.
What does happen:
I get the access denied error page.

** Affects: snapd (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/2064676

Title:
  Firefox snap cannot open files in Samba share

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


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

[Bug 2064676] Re: Firefox snap cannot open files in Samba share

2024-05-02 Thread James Seiters
Forgot to mention the share is mounted under my home directory.

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

Title:
  Firefox snap cannot open files in Samba share

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


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

[Bug 2064096] Re: Services fail to start in noble deployed with TPM+FDE

2024-05-02 Thread James Paton-Smith
Answering questions from #2064088

Q: Did you install this fde/tpm setup using the ubuntu desktop noble installer? 
Or was hit some manual setup?
A: The install was performed using autoinstall with the desktop ISO. Attached 
is a copy of the autoinstall yaml

** Attachment added: "autoinstall user-data YAML"
   
https://bugs.launchpad.net/ubuntu/+source/rsyslog/+bug/2064096/+attachment/5774010/+files/user-data

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

Title:
  Services fail to start in noble deployed with TPM+FDE

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


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

[Bug 2064096] Re: Services fail to start in noble deployed with TPM+FDE

2024-05-02 Thread James Paton-Smith
Answering questions from #2064088

Q: Can you also show the output of: ps fauxwZ

A: See attached

** Attachment added: "ps"
   
https://bugs.launchpad.net/ubuntu/+source/rsyslog/+bug/2064096/+attachment/5774011/+files/ps

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

Title:
  Services fail to start in noble deployed with TPM+FDE

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


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

[Bug 2064096] Re: rsyslog service timeout on noble numbat

2024-05-01 Thread James Paton-Smith
Do you think we should mark #2064088 as a duplicate of this (or vice-
versa), if we're confident this is the same underlying issue?

There are some outstanding questions for me on that bug, but it might
make sense to focus our comments in one place going forward.

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

Title:
  rsyslog service timeout on noble numbat

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


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

[Bug 2064117] Re: keystone/noble, now 2:25.0.0-0ubuntu1 keystone -manage db_sync

2024-04-30 Thread James Page
OK - marking as invalid then!

** Changed in: keystone (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  keystone/noble,now 2:25.0.0-0ubuntu1 keystone -manage db_sync

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


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

[Bug 2063456] Re: package cephadm: dependency "cephadmlib" missing

2024-04-30 Thread James Page
** Also affects: ceph (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: ceph (Ubuntu Oracular)
   Importance: Critical
   Status: Confirmed

** Changed in: ceph (Ubuntu Oracular)
   Status: Confirmed => Triaged

** Changed in: ceph (Ubuntu Noble)
   Status: New => Triaged

** Changed in: ceph (Ubuntu Noble)
   Importance: Undecided => High

** Changed in: ceph (Ubuntu Oracular)
   Importance: Critical => High

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

Title:
  package cephadm: dependency "cephadmlib" missing

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


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

[Bug 2064088] Re: sssd service fails to start in noble numbat

2024-04-30 Thread James Paton-Smith
** Attachment added: "syslog"
   
https://bugs.launchpad.net/ubuntu/+source/sssd/+bug/2064088/+attachment/5773256/+files/syslog

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

Title:
  sssd service fails to start in noble numbat

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


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

[Bug 2064088] Re: sssd service fails to start in noble numbat

2024-04-30 Thread James Paton-Smith
Here is the dmesg output when trying to start sssd. I'll attach syslog
as well from the same time period

** Attachment added: "dmesg"
   
https://bugs.launchpad.net/ubuntu/+source/sssd/+bug/2064088/+attachment/5773255/+files/dmesg

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

Title:
  sssd service fails to start in noble numbat

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


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

[Bug 2057713] Re: [SRU] ceph 16.2.15

2024-04-30 Thread James Page
This bug was fixed in the package ceph - 16.2.15-0ubuntu0.21.04.1~cloud0
---

 ceph (16.2.15-0ubuntu0.21.04.1~cloud0) focal-wallaby; urgency=medium
 .
   * New upstream release (LP: #2057713):
 - d/p/*: Refresh.
 - d/p/bug1917414.patch: Drop, included in release.


** Changed in: cloud-archive/wallaby
   Status: Fix Committed => Fix Released

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

Title:
  [SRU] ceph 16.2.15

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/2057713/+subscriptions


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

[Bug 2057713] Update Released

2024-04-30 Thread James Page
The verification of the Stable Release Update for ceph has completed
successfully and the package has now been released to -updates. In the
event that you encounter a regression using the package from -updates
please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  [SRU] ceph 16.2.15

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/2057713/+subscriptions


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

[Bug 2064096] Re: rsyslog service timeout on noble numbat

2024-04-30 Thread James Paton-Smith
I've just found that the cups.service is also experiencing the same
behaviour. Again it has the service type 'notify'.

I suspect other services using this type will have the same problem.

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

Title:
  rsyslog service timeout on noble numbat

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


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

[Bug 2063456] Re: package cephadm: dependency "cephadmlib" missing

2024-04-29 Thread James Page
Test package building here:

https://launchpad.net/~james-page/+archive/ubuntu/caracal

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

Title:
  package cephadm: dependency "cephadmlib" missing

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


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

[Bug 2064117] Re: keystone/noble, now 2:25.0.0-0ubuntu1 keystone -manage db_sync

2024-04-29 Thread James Page
Hi Johan

I'm not able to reproduce your problem; in my setup I've configured
mysql with a keystone database, username and password for access, and
then configured this in /etc/keystone/keystone.conf

I then ran the db_sync command to setup the database, created the fernet
keys and then successfully bootstrapped the deployment.

2024-04-29 14:48:45.073 12333 INFO alembic.runtime.migration [-] Context impl 
MySQLImpl.
2024-04-29 14:48:45.073 12333 INFO alembic.runtime.migration [-] Will assume 
non-transactional DDL.
2024-04-29 14:48:45.093 12333 INFO alembic.runtime.migration [-] Running 
upgrade  -> 27e647c0fad4, Initial version.
2024-04-29 14:48:45.939 12333 INFO alembic.runtime.migration [-] Running 
upgrade 27e647c0fad4 -> 29e87d24a316, Initial no-op Yoga expand migration.
2024-04-29 14:48:45.940 12333 INFO alembic.runtime.migration [-] Running 
upgrade 29e87d24a316 -> b4f8b3f584e0, Fix incorrect constraints.
2024-04-29 14:48:45.951 12333 INFO alembic.runtime.migration [-] Running 
upgrade b4f8b3f584e0 -> 11c3b243b4cb, Remove 
service_provider.relay_state_prefix server default.
2024-04-29 14:48:45.957 12333 INFO alembic.runtime.migration [-] Running 
upgrade 11c3b243b4cb -> 47147121, Add Identity Federation attribute mapping 
schema version.
2024-04-29 14:48:45.967 12333 INFO alembic.runtime.migration [-] Running 
upgrade 27e647c0fad4 -> e25ffa003242, Initial no-op Yoga contract migration.
2024-04-29 14:48:45.967 12333 INFO alembic.runtime.migration [-] Running 
upgrade e25ffa003242 -> 99de3849d860, Fix incorrect constraints.
2024-04-29 14:48:45.983 12333 INFO alembic.runtime.migration [-] Running 
upgrade 99de3849d860 -> c88cdce8f248, Remove duplicate constraints.
2024-04-29 14:49:26.124 13264 INFO keystone.common.fernet_utils [-] Created a 
new temporary key: /etc/keystone/fernet-keys/0.tmp
2024-04-29 14:49:26.125 13264 INFO keystone.common.fernet_utils [-] Become a 
valid new key: /etc/keystone/fernet-keys/0
2024-04-29 14:49:26.125 13264 INFO keystone.common.fernet_utils [-] Starting 
key rotation with 1 key files: ['/etc/keystone/fernet-keys/0']
2024-04-29 14:49:26.125 13264 INFO keystone.common.fernet_utils [-] Created a 
new temporary key: /etc/keystone/fernet-keys/0.tmp
2024-04-29 14:49:26.125 13264 INFO keystone.common.fernet_utils [-] Current 
primary key is: 0
2024-04-29 14:49:26.126 13264 INFO keystone.common.fernet_utils [-] Next 
primary key will be: 1
2024-04-29 14:49:26.126 13264 INFO keystone.common.fernet_utils [-] Promoted 
key 0 to be the primary: 1
2024-04-29 14:49:26.126 13264 INFO keystone.common.fernet_utils [-] Become a 
valid new key: /etc/keystone/fernet-keys/0
2024-04-29 14:49:36.731 13449 INFO keystone.common.utils [-] 
/etc/keystone/credential-keys/ does not appear to exist; attempting to create it
2024-04-29 14:49:36.732 13449 INFO keystone.common.fernet_utils [-] Created a 
new temporary key: /etc/keystone/credential-keys/0.tmp
2024-04-29 14:49:36.732 13449 INFO keystone.common.fernet_utils [-] Become a 
valid new key: /etc/keystone/credential-keys/0
2024-04-29 14:49:36.732 13449 INFO keystone.common.fernet_utils [-] Starting 
key rotation with 1 key files: ['/etc/keystone/credential-keys/0']
2024-04-29 14:49:36.732 13449 INFO keystone.common.fernet_utils [-] Created a 
new temporary key: /etc/keystone/credential-keys/0.tmp
2024-04-29 14:49:36.732 13449 INFO keystone.common.fernet_utils [-] Current 
primary key is: 0
2024-04-29 14:49:36.734 13449 INFO keystone.common.fernet_utils [-] Next 
primary key will be: 1
2024-04-29 14:49:36.734 13449 INFO keystone.common.fernet_utils [-] Promoted 
key 0 to be the primary: 1
2024-04-29 14:49:36.734 13449 INFO keystone.common.fernet_utils [-] Become a 
valid new key: /etc/keystone/credential-keys/0
2024-04-29 14:50:52.731 14749 INFO keystone.cmd.bootstrap [None 
req-14f75b10-bd92-4eb7-a3cb-27f79bc6570e - - - - - -] Created domain default
2024-04-29 14:50:52.755 14749 INFO keystone.cmd.bootstrap [None 
req-14f75b10-bd92-4eb7-a3cb-27f79bc6570e - - - - - -] Created project admin
2024-04-29 14:50:52.766 14749 WARNING keystone.common.password_hashing [None 
req-14f75b10-bd92-4eb7-a3cb-27f79bc6570e - - - - - -] Truncating password to 
algorithm specific maximum length 72 characters.: 
keystone.exception.UserNotFound: Could not find user: admin.
2024-04-29 14:50:52.956 14749 INFO keystone.cmd.bootstrap [None 
req-14f75b10-bd92-4eb7-a3cb-27f79bc6570e - - - - - -] Created user admin
2024-04-29 14:50:52.962 14749 INFO keystone.cmd.bootstrap [None 
req-14f75b10-bd92-4eb7-a3cb-27f79bc6570e - - - - - -] Created role reader
2024-04-29 14:50:52.966 14749 INFO keystone.cmd.bootstrap [None 
req-14f75b10-bd92-4eb7-a3cb-27f79bc6570e - - - - - -] Created role member
2024-04-29 14:50:52.973 14749 INFO keystone.cmd.bootstrap [None 
req-14f75b10-bd92-4eb7-a3cb-27f79bc6570e - - - - - -] Created implied role 
where 70b64bb530a847ed9b3828f5db9b9071 implies 7542f73afffe4045878d16e33b5dbd1f
2024-04-29 14:50:52.978 14749 INFO keystone.cmd.bootstrap [None 

[Bug 2064112] [NEW] mk-sbuild fails to add user to group on first run

2024-04-29 Thread James Howe
Public bug reported:

/usr/bin/mk-sbuild line 301:

sudo adduser "$USER" sbuild

should be:

sudo usermod -a -G sbuild "$USER"

otherwise it fails with the message:

fatal: Only one or two names allowed.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: ubuntu-dev-tools 0.201ubuntu2
Uname: Linux 5.15.146.1-microsoft-standard-WSL2 x86_64
ApportVersion: 2.28.1-0ubuntu2
Architecture: amd64
CasperMD5CheckResult: unknown
CloudBuildName: ubuntu-oci:minimized
CloudSerial: 20240423
Date: Mon Apr 29 11:54:10 2024
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, no user)
 TERM=xterm
SourcePackage: ubuntu-dev-tools
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu-dev-tools (Ubuntu)
 Importance: Undecided
 Status: Invalid


** Tags: amd64 apport-bug cloud-image noble

** Description changed:

  /usr/bin/mk-sbuild line 301:
  
- sudo adduser "$USER" sbuild
+ sudo adduser "$USER" sbuild
  
  should be:
  
- sudo adduser "$USER" -G sbuild
+ sudo usermod -a -G sbuild "$USER"
  
  otherwise it fails with the message:
  
- fatal: Only one or two names allowed.
+ fatal: Only one or two names allowed.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 24.04
  Package: ubuntu-dev-tools 0.201ubuntu2
  Uname: Linux 5.15.146.1-microsoft-standard-WSL2 x86_64
  ApportVersion: 2.28.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CloudBuildName: ubuntu-oci:minimized
  CloudSerial: 20240423
  Date: Mon Apr 29 11:54:10 2024
  PackageArchitecture: all
  ProcEnviron:
-  PATH=(custom, no user)
-  TERM=xterm
+  PATH=(custom, no user)
+  TERM=xterm
  SourcePackage: ubuntu-dev-tools
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  mk-sbuild fails to add user to group on first run

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


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

[Bug 2064112] Re: mk-sbuild fails to add user to group on first run

2024-04-29 Thread James Howe
Sorry, I was running in a Docker container, and $USER was undefined.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New => Invalid

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

Title:
  mk-sbuild fails to add user to group on first run

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


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

[Bug 2064096] [NEW] rsyslog service timeout on noble numbat

2024-04-29 Thread James Paton-Smith
Public bug reported:

This might be related to #2064088

The rsyslog service is continually timing out and restarting. If I use a
service drop-in file and change the 'Type' from 'notify' to 'simple',
the service starts and appears to work normally.

In the journal, I can see the attached apparmor errors. I can't make
sense of them, but if it's a similar issue to #2064088, then I suspect
apparmor is preventing the systemd notify function from alerting systemd
that the service is up and running.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: rsyslog 8.2312.0-3ubuntu9
ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
Uname: Linux 6.8.0-31-generic x86_64
ApportVersion: 2.28.1-0ubuntu2
Architecture: amd64
CasperMD5CheckMismatches: ./boot/grub/grub.cfg
CasperMD5CheckResult: fail
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 29 10:37:46 2024
ProcEnviron:
 LANG=en_GB.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: rsyslog
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug noble wayland-session

** Attachment added: "rsyslog.log"
   
https://bugs.launchpad.net/bugs/2064096/+attachment/5772453/+files/rsyslog.log

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

Title:
  rsyslog service timeout on noble numbat

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


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

[Bug 2063456] Re: package cephadm: dependency "cephadmlib" missing

2024-04-29 Thread James Page
Confirmed - Python module is missing from the cephadm package - this
probably impacts the upstream ceph packaging as well.

** Changed in: ceph (Ubuntu)
   Status: New => Confirmed

** Changed in: ceph (Ubuntu)
   Importance: Undecided => Critical

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

Title:
  package cephadm: dependency "cephadmlib" missing

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


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

[Bug 2064088] Re: sssd service fails to start in noble numbat

2024-04-29 Thread James Paton-Smith
I should add that this is a system built with TPM-backed FDE if that has
any relevance. I haven't tested on a non-encrypted system.

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

Title:
  sssd service fails to start in noble numbat

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


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

[Bug 2064088] [NEW] sssd service fails to start in noble numbat

2024-04-29 Thread James Paton-Smith
Public bug reported:

On a fresh build of Ubuntu 24.04, attempting to run the sssd service is
failing continuously with a systemd service 'timeout' error.

The same /etc/sssd/sssd.conf file is working in 20.04 and 22.04

I believe this issue is specifically related to the sssd systemd
service.

In the default sssd.service file, the service 'Type' is 'notify' (It's
the same in 20.04 and 22.04). However, the service is getting
'permission denied' errors when notifying systemd that the service is
up. See attached.

If I use a service drop-in to change the service 'Type' to 'simple', the
service starts immediately and works as intended.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: sssd 2.9.4-1.1ubuntu6
ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
Uname: Linux 6.8.0-31-generic x86_64
ApportVersion: 2.28.1-0ubuntu2
Architecture: amd64
CasperMD5CheckMismatches: ./boot/grub/grub.cfg
CasperMD5CheckResult: fail
CloudArchitecture: x86_64
CloudID: none
CloudName: none
CloudPlatform: none
CloudSubPlatform: config
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 29 09:20:02 2024
ProcEnviron:
 LANG=en_GB.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: sssd
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug noble wayland-session

** Attachment added: "/var/log/sssd/sssd.log"
   https://bugs.launchpad.net/bugs/2064088/+attachment/5772395/+files/sssd.log

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

Title:
  sssd service fails to start in noble numbat

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


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

[Bug 2063813] Re: cloud-init schema validation failure for: 'broadcast' (24.04)

2024-04-26 Thread James Falcon
** Also affects: subiquity (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/2063813

Title:
  cloud-init schema validation failure for: 'broadcast' (24.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2063813/+subscriptions


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

[Bug 2063818] [NEW] libzmq5 : Depends: libpgm-5.3-0 (>= 5.1.116~dfsg) but only libpgm-5.3-0t64 is available

2024-04-26 Thread James
Public bug reported:

Uuntu 24.04 Noble
I see this when trying to install libzmq5
libzmq5 is in Ubuntu Universe, but the bug reporter does not think libzmq5 
existing in ubuntu, so I put zeromq3 instead. the "I don't know" option does 
not let you select it when you go to submit bug.


The following packages have unmet dependencies:
 libzmq5 : Depends: libpgm-5.3-0 (>= 5.1.116~dfsg)
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.

It appears to be looking for libpgm-5.3-0   but only libpgm-5.3-0t64 is
available

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: libzmq5 4.3.5-1build2
Uname: Linux 6.8.7-jcd x86_64
ApportVersion: 2.28.1-0ubuntu2
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Fri Apr 26 11:02:52 2024
InstallationDate: Installed on 2022-11-27 (516 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Beta amd64 (20220329.1)
ProcEnviron:
 LANG=en_GB.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: zeromq3
UpgradeStatus: Upgraded to noble on 2024-04-25 (1 days ago)

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


** Tags: amd64 apport-bug noble third-party-packages wayland-session

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

Title:
  libzmq5 : Depends: libpgm-5.3-0 (>= 5.1.116~dfsg)  but only
  libpgm-5.3-0t64 is available

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


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

[Bug 2063322] Re: ite-cir driver failed to load due to a regression in linux kernel 6.5+ serial driver change

2024-04-26 Thread James Joseph
** Tags added: noble

** Tags added: mantic

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

Title:
  ite-cir driver failed to load due to a regression in linux kernel 6.5+
  serial driver change

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


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

[Bug 2041751] Re: RM: Remove dangerously insecure MPPE PPTP from Ubuntu

2024-04-26 Thread James Cameron
I'm upstream.  I saw the removal first in the release notes.  Yet I'm
not surprised by removal.  The contributions to pptp and pptpd have
declined, so the release cadence has slowed as well (1.4.0 in 2013, but
a few commits in git since).  Number of people asking for help has also
declined.  Some countries or corporations still require it, presumably
because it is so easily monitored.

Using pptpd on Ubuntu will be more difficult because of removal from
Ubuntu, but that's just a security by obscurity; very easily bypassed by
installing the software yourself.  Thanks for holding on so long.

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

Title:
  RM: Remove dangerously insecure MPPE PPTP from Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/2041751/+subscriptions


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

[Bug 2063503] Re: NVidia drivers won't install completely

2024-04-25 Thread James Baker
This appears to be the issue. DRM_UNLOCKED does not exist for nvidia-
drm-drv.c to compile. Missing ot changed kernel header?

# CC [M]  
/var/lib/dkms/nvidia/545.29.06/build/nvidia-drm/nvidia-drm-gem-nvkms-memory.o
  cc 
-Wp,-MMD,/var/lib/dkms/nvidia/545.29.06/build/nvidia-drm/.nvidia-drm-gem-nvkms-memory.o.d
 -nostdinc -I./arch/x86/include -I./arch/x86/include/generated  -I./include 
-I./arch/x86/include/uapi -I./arch/x86/include/generated/uapi -I./include/uapi 
-I./include/generated/uapi -include ./include/linux/compiler-version.h -include 
./include/linux/kconfig.h -I./ubuntu/include -include 
./include/linux/compiler_types.h -D__KERNEL__ -fmacro-prefix-map=./= -std=gnu11 
-fshort-wchar -funsigned-char -fno-common -fno-PIE -fno-strict-aliasing 
-mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx -fcf-protection=none -m64 
-falign-jumps=1 -falign-loops=1 -mno-80387 -mno-fp-ret-in-387 
-mpreferred-stack-boundary=3 -mskip-rax-setup -mtune=generic -mno-red-zone 
-mcmodel=kernel -Wno-sign-compare -fno-asynchronous-unwind-tables 
-mindirect-branch=thunk-extern -mindirect-branch-register 
-mindirect-branch-cs-prefix -mfunction-return=thunk-extern -fno-jump-tables 
-mharden-sls=all -fpatchable-function-entry=16,16 
-fno-delete-null-pointer-checks -O2 -fno-allow-store-data-races 
-fstack-protector-strong -fno-omit-frame-pointer -fno-optimize-sibling-calls 
-ftrivial-auto-var-init=zero -fno-stack-clash-protection 
-fzero-call-used-regs=used-gpr -pg -mrecord-mcount -mfentry -DCC_USING_FENTRY 
-falign-functions=16 -fstrict-flex-arrays=3 -fno-strict-overflow 
-fno-stack-check -fconserve-stack -Wall -Wundef 
-Werror=implicit-function-declaration -Werror=implicit-int -Werror=return-type 
-Werror=strict-prototypes -Wno-format-security -Wno-trigraphs 
-Wno-frame-address -Wno-address-of-packed-member -Wmissing-declarations 
-Wmissing-prototypes -Wframe-larger-than=1024 -Wno-main 
-Wno-unused-but-set-variable -Wno-unused-const-variable -Wno-dangling-pointer 
-Wvla -Wno-pointer-sign -Wcast-function-type -Wno-stringop-overflow 
-Wno-array-bounds -Wno-alloc-size-larger-than -Wimplicit-fallthrough=5 
-Werror=date-time -Werror=incompatible-pointer-types -Werror=designated-init 
-Wenum-conversion -Wno-unused-but-set-variable -Wno-unused-const-variable 
-Wno-restrict -Wno-packed-not-aligned -Wno-format-overflow 
-Wno-format-truncation -Wno-stringop-truncation -Wno-missing-field-initializers 
-Wno-type-limits -Wno-shift-negative-value -Wno-maybe-uninitialized 
-Wno-sign-compare -g -gdwarf-5 
-I/var/lib/dkms/nvidia/545.29.06/build/common/inc 
-I/var/lib/dkms/nvidia/545.29.06/build -Wall -Wno-cast-qual -Wno-error 
-Wno-format-extra-args -D__KERNEL__ -DMODULE -DNVRM 
-DNV_VERSION_STRING=\"545.29.06\" -DNV_FILESYSTEM_ACCESS_AVAILABLE=1 
-Wno-unused-function -Wuninitialized -fno-strict-aliasing -ffreestanding 
-mno-red-zone -mcmodel=kernel -DNV_UVM_ENABLE -Werror=undef -DNV_SPECTRE_V2=0 
-DNV_KERNEL_INTERFACE_LAYER -I/var/lib/dkms/nvidia/545.29.06/build/nvidia-drm 
-UDEBUG -U_DEBUG -DNDEBUG -DNV_BUILD_MODULE_INSTANCES=0  
-fsanitize=bounds-strict -fsanitize=shift -fsanitize=bool -fsanitize=enum  
-DMODULE  -DKBUILD_BASENAME='"nvidia_drm_gem_nvkms_memory"' 
-DKBUILD_MODNAME='"nvidia_drm"' -D__KBUILD_MODNAME=kmod_nvidia_drm -c -o 
/var/lib/dkms/nvidia/545.29.06/build/nvidia-drm/nvidia-drm-gem-nvkms-memory.o 
/var/lib/dkms/nvidia/545.29.06/build/nvidia-drm/nvidia-drm-gem-nvkms-memory.c   
; ./tools/objtool/objtool --hacks=jump_label --hacks=noinstr --hacks=skylake 
--retpoline --rethunk --sls --stackval --static-call --uaccess --prefix=16   
--module 
/var/lib/dkms/nvidia/545.29.06/build/nvidia-drm/nvidia-drm-gem-nvkms-memory.o
In file included from 
/var/lib/dkms/nvidia/545.29.06/build/nvidia-drm/nvidia-drm-drv.c:64:
/var/lib/dkms/nvidia/545.29.06/build/nvidia-drm/nvidia-drm-drv.c:1489:40: 
error: ‘DRM_UNLOCKED’ undeclared here (not in a function); did you mean 
‘VM_LOCKED’?
 1489 |   DRM_RENDER_ALLOW|DRM_UNLOCKED),
  |^~~~
./include/drm/drm_ioctl.h:155:26: note: in definition of macro 
‘DRM_IOCTL_DEF_DRV’
  155 | .flags = _flags,
\
  |  ^~

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

Title:
  NVidia drivers won't install completely

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


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

[Bug 2063503] Re: NVidia drivers won't install completely

2024-04-25 Thread James Baker
** Attachment added: "The make.log referred to in my comment above"
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/2063503/+attachment/5770654/+files/make.log

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

Title:
  NVidia drivers won't install completely

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


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

[Bug 2063503] Re: NVidia drivers won't install completely

2024-04-25 Thread James Baker
Tried again after purging all things NVidia and rebooting.

:~$ sudo ubuntu-drivers install --recommended
udevadm hwdb is deprecated. Use systemd-hwdb instead.
udevadm hwdb is deprecated. Use systemd-hwdb instead.
udevadm hwdb is deprecated. Use systemd-hwdb instead.
udevadm hwdb is deprecated. Use systemd-hwdb instead.
udevadm hwdb is deprecated. Use systemd-hwdb instead.
udevadm hwdb is deprecated. Use systemd-hwdb instead.
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  libnvidia-cfg1-545 libnvidia-common-545 libnvidia-compute-545 
libnvidia-decode-545 libnvidia-encode-545 libnvidia-extra-545 
libnvidia-fbc1-545 libnvidia-gl-545 libnvidia-gl-545:i386 
nvidia-compute-utils-545
  nvidia-firmware-545-545.29.06 nvidia-kernel-common-545 
nvidia-kernel-source-545 nvidia-prime nvidia-settings nvidia-utils-545 
xserver-xorg-video-nvidia-545
The following NEW packages will be installed:
  libnvidia-cfg1-545 libnvidia-common-545 libnvidia-compute-545 
libnvidia-decode-545 libnvidia-encode-545 libnvidia-extra-545 
libnvidia-fbc1-545 libnvidia-gl-545 libnvidia-gl-545:i386 
nvidia-compute-utils-545
  nvidia-dkms-545 nvidia-driver-545 nvidia-firmware-545-545.29.06 
nvidia-kernel-common-545 nvidia-kernel-source-545 nvidia-prime nvidia-settings 
nvidia-utils-545 xserver-xorg-video-nvidia-545
0 upgraded, 19 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/338 MB of archives.
After this operation, 908 MB of additional disk space will be used.
Selecting previously unselected package libnvidia-cfg1-545:amd64.
(Reading database ... 339019 files and directories currently installed.)
Preparing to unpack 
.../00-libnvidia-cfg1-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking libnvidia-cfg1-545:amd64 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package libnvidia-common-545.
Preparing to unpack 
.../01-libnvidia-common-545_545.29.06-0ubuntu0~gpu24.04.1_all.deb ...
Unpacking libnvidia-common-545 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package libnvidia-compute-545:amd64.
Preparing to unpack 
.../02-libnvidia-compute-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking libnvidia-compute-545:amd64 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package libnvidia-decode-545:amd64.
Preparing to unpack 
.../03-libnvidia-decode-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking libnvidia-decode-545:amd64 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package libnvidia-encode-545:amd64.
Preparing to unpack 
.../04-libnvidia-encode-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking libnvidia-encode-545:amd64 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package libnvidia-extra-545:amd64.
Preparing to unpack 
.../05-libnvidia-extra-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking libnvidia-extra-545:amd64 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package libnvidia-fbc1-545:amd64.
Preparing to unpack 
.../06-libnvidia-fbc1-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking libnvidia-fbc1-545:amd64 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package libnvidia-gl-545:i386.
Preparing to unpack 
.../07-libnvidia-gl-545_545.29.06-0ubuntu0~gpu24.04.1_i386.deb ...
dpkg-query: no packages found matching libnvidia-gl-535
Unpacking libnvidia-gl-545:i386 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package libnvidia-gl-545:amd64.
Preparing to unpack 
.../08-libnvidia-gl-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
dpkg-query: no packages found matching libnvidia-gl-535
Unpacking libnvidia-gl-545:amd64 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package nvidia-compute-utils-545.
Preparing to unpack 
.../09-nvidia-compute-utils-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking nvidia-compute-utils-545 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package nvidia-kernel-source-545.
Preparing to unpack 
.../10-nvidia-kernel-source-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking nvidia-kernel-source-545 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package nvidia-firmware-545-545.29.06.
Preparing to unpack 
.../11-nvidia-firmware-545-545.29.06_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking nvidia-firmware-545-545.29.06 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package nvidia-kernel-common-545.
Preparing to unpack 
.../12-nvidia-kernel-common-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking nvidia-kernel-common-545 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously unselected package nvidia-dkms-545.
Preparing to unpack 
.../13-nvidia-dkms-545_545.29.06-0ubuntu0~gpu24.04.1_amd64.deb ...
Unpacking nvidia-dkms-545 (545.29.06-0ubuntu0~gpu24.04.1) ...
Selecting previously 

[Bug 2063512] [NEW] on reboot with linux-image-6.5.0-34 system hangs at loading initial ramdisk

2024-04-25 Thread James Hill
Public bug reported:

loading initial ramdisk hangs only with linux-image-6.5.0-34

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: nvidia-driver-550 550.67-0ubuntu1.22.04.2
ProcVersionSignature: Ubuntu 6.5.0-28.29~22.04.1-generic 6.5.13
Uname: Linux 6.5.0-28-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Thu Apr 25 16:36:07 2024
InstallationDate: Installed on 2021-01-20 (1191 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
SourcePackage: nvidia-graphics-drivers-550
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: nvidia-graphics-drivers-550 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug jammy 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/2063512

Title:
  on reboot with linux-image-6.5.0-34 system hangs at loading initial
  ramdisk

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-550/+bug/2063512/+subscriptions


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

[Bug 2063503] [NEW] NVidia drivers won't install completely

2024-04-25 Thread James Baker
Public bug reported:

ll versions of the nvidia driver fail to install no matter what.
Including the one downloaded from Nvidia. It doesn't matter the version.

:~$ sudo apt install nvidia-driver-550
[sudo] password for jim: 
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following package was automatically installed and is no longer required:
  nvidia-firmware-545-545.29.06
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  libnvidia-cfg1-550 libnvidia-common-550 libnvidia-compute-550
  libnvidia-compute-550:i386 libnvidia-decode-550 libnvidia-decode-550:i386
  libnvidia-encode-550 libnvidia-encode-550:i386 libnvidia-extra-550
  libnvidia-fbc1-550 libnvidia-fbc1-550:i386 libnvidia-gl-550
  libnvidia-gl-550:i386 nvidia-compute-utils-550 nvidia-dkms-550
  nvidia-firmware-550-550.67 nvidia-kernel-common-550 nvidia-kernel-source-550
  nvidia-utils-550 xserver-xorg-video-nvidia-550
The following packages will be REMOVED:
  libnvidia-cfg1-545 libnvidia-common-545 libnvidia-compute-545
  libnvidia-compute-545:i386 libnvidia-decode-545 libnvidia-decode-545:i386
  libnvidia-encode-545 libnvidia-encode-545:i386 libnvidia-extra-545
  libnvidia-fbc1-545 libnvidia-fbc1-545:i386 libnvidia-gl-545
  libnvidia-gl-545:i386 nvidia-compute-utils-545 nvidia-dkms-545
  nvidia-driver-545 nvidia-kernel-common-545 nvidia-kernel-source-545
  nvidia-utils-545 xserver-xorg-video-nvidia-545
The following NEW packages will be installed:
  libnvidia-cfg1-550 libnvidia-common-550 libnvidia-compute-550
  libnvidia-compute-550:i386 libnvidia-decode-550 libnvidia-decode-550:i386
  libnvidia-encode-550 libnvidia-encode-550:i386 libnvidia-extra-550
  libnvidia-fbc1-550 libnvidia-fbc1-550:i386 libnvidia-gl-550
  libnvidia-gl-550:i386 nvidia-compute-utils-550 nvidia-dkms-550
  nvidia-driver-550 nvidia-firmware-550-550.67 nvidia-kernel-common-550
  nvidia-kernel-source-550 nvidia-utils-550 xserver-xorg-video-nvidia-550
0 upgraded, 21 newly installed, 20 to remove and 15 not upgraded.
2 not fully installed or removed.
Need to get 360 MB of archives.
After this operation, 14.7 MB of additional disk space will be used.
Do you want to continue? [Y/n] 
Get:1 http://archive.ubuntu.com/ubuntu noble/multiverse amd64 nvidia-dkms-550 
amd64 550.67-0ubuntu3 [35.8 kB]
Get:2 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
libnvidia-cfg1-550 amd64 550.67-0ubuntu3 [155 kB]
Get:3 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
libnvidia-common-550 all 550.67-0ubuntu3 [14.8 kB]
Get:4 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
libnvidia-compute-550 amd64 550.67-0ubuntu3 [41.3 MB]
Get:5 http://ca.archive.ubuntu.com/ubuntu noble/restricted i386 
libnvidia-compute-550 i386 550.67-0ubuntu3 [41.2 MB]
Get:6 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
libnvidia-decode-550 amd64 550.67-0ubuntu3 [2,028 kB]
Get:7 http://ca.archive.ubuntu.com/ubuntu noble/restricted i386 
libnvidia-decode-550 i386 550.67-0ubuntu3 [2,470 kB]
Get:8 http://ca.archive.ubuntu.com/ubuntu noble/restricted i386 
libnvidia-encode-550 i386 550.67-0ubuntu3 [115 kB]
Get:9 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
libnvidia-encode-550 amd64 550.67-0ubuntu3 [105 kB]
Get:10 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
libnvidia-extra-550 amd64 550.67-0ubuntu3 [72.9 kB]
Get:11 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
libnvidia-fbc1-550 amd64 550.67-0ubuntu3 [56.4 kB]
Get:12 http://ca.archive.ubuntu.com/ubuntu noble/restricted i386 
libnvidia-fbc1-550 i386 550.67-0ubuntu3 [61.9 kB]
Get:13 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
libnvidia-gl-550 amd64 550.67-0ubuntu3 [155 MB]
Get:14 http://ca.archive.ubuntu.com/ubuntu noble/restricted i386 
libnvidia-gl-550 i386 550.67-0ubuntu3 [33.8 MB]
Get:15 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
nvidia-compute-utils-550 amd64 550.67-0ubuntu3 [123 kB]
Get:16 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
nvidia-kernel-source-550 amd64 550.67-0ubuntu3 [41.7 MB]
Get:17 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
nvidia-firmware-550-550.67 amd64 550.67-0ubuntu3 [38.1 MB]
Get:18 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
nvidia-kernel-common-550 amd64 550.67-0ubuntu3 [120 kB]
Get:19 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
nvidia-utils-550 amd64 550.67-0ubuntu3 [521 kB]
Get:20 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
xserver-xorg-video-nvidia-550 amd64 550.67-0ubuntu3 [1,616 kB]
Get:21 http://ca.archive.ubuntu.com/ubuntu noble/restricted amd64 
nvidia-driver-550 amd64 550.67-0ubuntu3 [486 kB]
Fetched 360 MB in 30s (11.8 MB/s)  
(Reading database ... 339762 files and directories currently installed.)
Removing nvidia-driver-545 (545.29.06-0ubuntu0~gpu24.04.1) ...
Removing nvidia-dkms-545 

[Bug 2063322] [NEW] ite-cir driver failed to load due to a regression in linux kernel 6.5+ serial driver change

2024-04-24 Thread James Joseph
Public bug reported:

[Impact]

From Kernel 6.5 and above, the serial driver now claims multiple UART
ports by default, when the previous behaviour was it would only claim 1.
Due to this the ite-cir driver can no longer load because the port it
would assign itself is now being used in memory by the 16550/8250
driver.  We have found a workaround by disabling the serial driver from
consuming more than 1 port.  Below is the steps we went to troubleshoot,
investigate and the solution we’ve found.  This is a regression from 6.4
behaviour.

When installing 24.04 I noticed that the /dev/lirc0 device was not
loaded on the system which is what is created when the driver is loaded.
After reviewing the driver we use on 20.04 I then searched the kernel
logs and found that the ite-cir driver failed to load due to error -16.

```
2024-04-19T13:44:51.873060+00:00 host kernel: rc rc0: ITE8708 CIR transceiver 
as /devices/pnp0/00:03/rc/rc0
2024-04-19T13:44:51.873062+00:00 host kernel: rc rc0: lirc_dev: driver ite-cir 
registered at minor = 0, raw IR receiver, raw IR transmitter
2024-04-19T13:44:51.873070+00:00 host kernel: input: ITE8708 CIR transceiver as 
/devices/pnp0/00:03/rc/rc0/input6
2024-04-19T13:44:51.873072+00:00 host kernel: i2c i2c-2: 2/2 memory slots 
populated (from DMI)
2024-04-19T13:44:51.873076+00:00 host kernel: i2c i2c-2: Successfully 
instantiated SPD at 0x50
2024-04-19T13:44:51.873078+00:00 host kernel: ite-cir: probe of 00:03 failed 
with error -16
```

I reviewed kernel error message and this error is due to the
device/resource is busy or in use.  My colleague and I reviewed the ite-
cir driver source code and noticed the driver initialisation succeeds up
until L1404
https://github.com/torvalds/linux/blob/master/drivers/media/rc/ite-
cir.c#L1404 where it attempts to request_region, if it fails to do this
it will unregister the device.

The request region allocates a place in memory for the device to use, we
believe it’s using the ioport.h’s request region function
https://github.com/torvalds/linux/blob/master/include/linux/ioport.h#L278

When we added some debug lines to ite-cir we noticed that the memory
reference it is trying to allocate is 02f8-02ff. We checked the ioports
on 24.04 and noticed that the serial driver was taking up this reference
in memory when in 20.04 (The OS we currently use) and 23.04 it would
not.

Ubuntu 24.04 ioports

```
user@host:~$ sudo cat /proc/ioports
-0cf7 : PCI Bus :00
  02f8-02ff : serial
  03f8-03ff : serial
```

Ubuntu 20.04 ioports memory allocation

```
user@host:~$ sudo cat /proc/ioports
-0cf7 : PCI Bus :00
  02f8-02ff : ite-cir
  03f8-03ff : serial
```

When we investigated any changes that might cause this, we came with two
potential commits that were released in 6.5 that might have caused this
issue:

* 
https://github.com/torvalds/linux/commit/9d86719f8769244dc99b8cb6091c41eae3fd684f
* 
https://github.com/torvalds/linux/commit/84a9582fd203063cd4d301204971ff2cd8327f1a

The serial changes allow 16550/8250 driver to consume as many serial
ports as they require initializing the driver, originally they only used
1.  Due to this we noticed that when we checked the serial ports in use
by the device that 8250 was consuming the place in memory that ite-cir
should.

Ubuntu 24.04

```
user@host:~$ sudo setserial -g /dev/ttyS*
/dev/ttyS0, UART: 16550A, Port: 0x03f8, IRQ: 4
/dev/ttyS1, UART: 8250, Port: 0x02f8, IRQ: 3
```

Ubuntu 20.04

```
user@host:~$ sudo setserial -g /dev/ttyS*
/dev/ttyS0, UART: 16550A, Port: 0x03f8, IRQ: 4
/dev/ttyS1, UART: unknown, Port: 0x02f8, IRQ: 3
```
[Regression]
We believe that the regression started from 6.5 kernel onwards based on the 
commit changes that were done to the serial driver that shipped to those 
kernels.  23.04 that uses 6.2 works as expected and shows no issues with using 
the serial port for IR while 23.10 that uses 6.5 and 24.04 that uses 6.8 does 
not load the ite-cir driver.

[Reproducible steps]

* Use Ubuntu 23.10 + or use Kernel 6.5+
* Use IR hardware that requires the ite-cir driver to be loaded
* Attempt to load ite-cir driver on boot of OS
* Check /var/log/kern.log for ite-cir driver failure

[Fix]

The requested solution would be to either:

* Set the serial driver to no longer consume more than 1 serial port
* Have the serial driver check what memory reference ite-cir driver needs to 
load, ignore that reference and then consume another point in memory instead.

We have found a workaround where we set the /etc/default/grub config to
make the 8250 use only 1 UART port, this allows ite-cir to consume the
port in memory like it use to, enabling us to use the driver again

/etc/default/grub

```
GRUB_CMDLINE_LINUX_DEFAULT="8250.nr_uarts=1"
```
The alternative fix is to have a startup script that will remove 8250 from 
using /dev/ttyS1 and then remove and re-add the ite-cir driver

```
#!/bin/bash

setserial /dev/ttyS1 uart none
modprobe -r ite-cir

```

[Diagnostic information]

version

```
Linux 

[Bug 1944746] Re: LibreOffice from Ubuntu Store/snaps broken GNOME integration for remote smb shares

2024-04-22 Thread James Paton-Smith
This issue is still present with the current latest Libreoffice Snap
version (24.2.2.2) both in Ubuntu 22.04 LTS and in the 24.04 Beta.

SMB shares and other GVFS mounted network locations are not visible in
the Open/Save file window.

If I try to manually navigate to the files under `/run/user//gvfs/`
I'm getting a 'Permission denied' error.

If I open the file directly from Nautilus using right-click 'Open With',
instead I get the attached error.

** Attachment added: "Screenshot from 2024-04-22 15-34-32.png"
   
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1944746/+attachment/5769396/+files/Screenshot%20from%202024-04-22%2015-34-32.png

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

Title:
  LibreOffice from Ubuntu Store/snaps broken GNOME integration for
  remote smb shares

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


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

[Bug 2056100] Re: sru cloud-init (24.1.3 update) Focal, Jammy, and Mantic

2024-04-22 Thread James Falcon
** Tags removed: verification-needed verification-needed-focal 
verification-needed-jammy verification-needed-mantic
** Tags added: verification-done verification-done-focal 
verification-done-jammy verification-done-mantic

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

Title:
  sru cloud-init (24.1.3 update) Focal, Jammy, and Mantic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2056100/+subscriptions


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

[Bug 2060727] Re: The keyboard does not work after latest kernel update

2024-04-19 Thread James Fox
The fix hasn't been released yet.

"Fix Committed" status means the source has been updated but hasn't been
released in a package.

"Fix Released" status means the new package has the fix.

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

Title:
  The keyboard does not work after latest kernel update

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


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

[Bug 2062421] Re: ceph-mgr-dashobard is uninstallable on noble due to dependency on python3-distutils

2024-04-19 Thread James Page
mwhudson had already uploaded a fix.

** Changed in: ceph (Ubuntu)
   Status: In Progress => Fix Committed

** Changed in: ceph (Ubuntu)
 Assignee: James Page (james-page) => (unassigned)

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

Title:
  ceph-mgr-dashobard is uninstallable on noble due to dependency on
  python3-distutils

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


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

[Bug 2062421] Re: ceph-mgr-dashobard is uninstallable on noble due to dependency on python3-distutils

2024-04-19 Thread James Page
Fix uploaded along with an update to the Vcs fields to try to keep git
inline with distro.

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

Title:
  ceph-mgr-dashobard is uninstallable on noble due to dependency on
  python3-distutils

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


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

[Bug 2062421] Re: ceph-mgr-dashobard is uninstallable on noble due to dependency on python3-distutils

2024-04-19 Thread James Page
** Changed in: ceph (Ubuntu)
   Status: New => In Progress

** Changed in: ceph (Ubuntu)
 Assignee: (unassigned) => James Page (james-page)

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

Title:
  ceph-mgr-dashobard is uninstallable on noble due to dependency on
  python3-distutils

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


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

[Bug 2062506] Re: autopkgtest - offloads conntrack - ICMP related with SNAT fails with openbsd-netcat

2024-04-19 Thread James
The SnVideo Downloader has emerged as a handy tool for users looking to save 
and revisit their favorite Snack Video content offline. With just a few clicks, 
users can conveniently download videos from the Snack Video platform onto their 
devices, allowing for seamless playback anytime, anywhere, even without an 
internet connection. https://snvideodownloader.com/

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

Title:
  autopkgtest - offloads conntrack - ICMP related with SNAT fails with
  openbsd-netcat

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


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

[Bug 2056100] Re: sru cloud-init (24.1.3 update) Focal, Jammy, and Mantic

2024-04-18 Thread James Falcon
Attached are the integration test runs for Focal, Jammy, and Mantic on
EC2, GCE, Azure, LXD containers, and LXD VMs. Curtin-cloud-init-sru
results are also attached.

Any failures are described in failures.txt along with "-rerun.txt"
containing reruns due to transient failures.

** Summary changed:

- sru cloud-init 23.4.4 to 24.1.3
+ sru cloud-init (24.1.3 update) Focal, Jammy, and Mantic

** Attachment added: "24.1.3.tar.gz"
   
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2056100/+attachment/5767494/+files/24.1.3.tar.gz

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

Title:
  sru cloud-init (24.1.3 update) Focal, Jammy, and Mantic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2056100/+subscriptions


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

[Bug 2061815] Re: [FFE] Drop support for non-64 bit architectures for ceph

2024-04-18 Thread James Page
Review of other potential dependencies:

Only builds with lib{something from ceph}-dev on 64 bit:

qemu
nfs-ganesha
fio
xrootd
samba
libvirt
tcmu
tgt
uwsgi


BD on architecture-is-64-bit so does not build for 32 bit:

eckit
fdb


Arch: all:

open-infrastructure-storage-tools
ceph-iscsi

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

Title:
  [FFE] Drop support for non-64 bit architectures for ceph

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


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

[Bug 1994521] Re: HPE3PAR: Failing to clone a volume having children

2024-04-17 Thread James Page
** Also affects: cloud-archive
   Importance: Undecided
   Status: New

** Also affects: cloud-archive/bobcat
   Importance: Undecided
   Status: New

** Also affects: cloud-archive/antelope
   Importance: Undecided
   Status: New

** Also affects: cloud-archive/yoga
   Importance: Undecided
   Status: New

** Changed in: cloud-archive
   Status: New => Fix Released

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

Title:
  HPE3PAR: Failing to clone a volume having children

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


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

[Bug 2062006] [NEW] Ubuntu Budgie 24.04 installer doesn't install EFI/Bootloader correctly

2024-04-17 Thread James Baker
Public bug reported:

I've installed Ubuntu Budgie on two separate machines now. The first
time, it was a complete format reinstall. After everything installed,
and I restarted, it asked me to remove teh usb drive and restart, and it
was fine. But when I rebooted, it wouldn't get to grub. The fix was to
copy the /boot/efi folder contents from the usb drive to the hard drive.
After that, it worked fine.

The second install, seemed to go very well too. This time it was
installed alongside an existing Windows. After removing the install
media and restarting as instructed, it booted directly to Windows, with
no Grub. I haven't solved this one yet.

** Affects: 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/2062006

Title:
  Ubuntu Budgie 24.04 installer doesn't install EFI/Bootloader correctly

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


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

[Bug 2061815] Re: [FFE] Drop support for non-64 bit architectures for ceph

2024-04-16 Thread James Page
tcmu patched by @mwhudson - thanks!

I've uploaded the three reverse-depends and the ceph update for the
release team to consider.

** Summary changed:

- Drop support for non-64 bit architectures for ceph
+ [FFE] Drop support for non-64 bit architectures for ceph

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

Title:
  [FFE] Drop support for non-64 bit architectures for ceph

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


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

[Bug 2061815] Re: Drop support for non-64 bit architectures for ceph

2024-04-16 Thread James Page
Proposed changes to ceph package - built and install tested in the PPA.

** Patch added: "drop-32bit.patch"
   
https://bugs.launchpad.net/ubuntu/+source/uwsgi/+bug/2061815/+attachment/5766254/+files/drop-32bit.patch

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

Title:
  Drop support for non-64 bit architectures for ceph

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


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

[Bug 2061815] Re: Drop support for non-64 bit architectures for ceph

2024-04-16 Thread James Page
tcmu FTBFS on armhf due to string formatting errors related to time64_t:

https://launchpadlibrarian.net/724900654/buildlog_ubuntu-noble-
armhf.tcmu_1.5.4-6ubuntu1~bpo24.04.1~20240416.115655_BUILDING.txt.gz

** Changed in: ceph (Ubuntu)
   Status: New => Triaged

** Changed in: tcmu (Ubuntu)
   Status: New => Triaged

** Changed in: tgt (Ubuntu)
   Status: New => Triaged

** Changed in: uwsgi (Ubuntu)
   Status: New => Triaged

** Changed in: ceph (Ubuntu)
   Importance: Undecided => Medium

** Changed in: tcmu (Ubuntu)
   Importance: Undecided => Medium

** Changed in: tgt (Ubuntu)
   Importance: Undecided => Medium

** Changed in: uwsgi (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  Drop support for non-64 bit architectures for ceph

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


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

[Bug 2061815] Re: Drop support for non-64 bit architectures for ceph

2024-04-16 Thread James Page
libvirt already dropped armhf support - there is an older version in
-updates for armhf that needs cleaning.

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

Title:
  Drop support for non-64 bit architectures for ceph

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


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

[Bug 2061815] Re: Drop support for non-64 bit architectures for ceph

2024-04-16 Thread James Page
Testing PPA here - https://launchpad.net/~james-
page/+archive/ubuntu/caracal


** Changed in: libvirt (Ubuntu)
   Status: New => Invalid

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

Title:
  Drop support for non-64 bit architectures for ceph

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


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

[Bug 2061815] [NEW] Drop support for non-64 bit architectures for ceph

2024-04-16 Thread James Page
Public bug reported:

As part of the wider scope of the time 64 work for armhf, we're
proposing dropping 32 bit architecture support in Ceph for noble.

This has a slightly wider impact than just ceph - the following packages
will also need updating to drop ceph support on anything other than 64
bit architectures.

tcmu-runner
libvirt
tgt
uwsgi

--

Reverse-Recommends
==
* ctdb [amd64 arm64 ppc64el s390x]
* open-infrastructure-storage-tools
* open-infrastructure-storage-tools
* samba-vfs-modules [amd64 arm64 ppc64el s390x]

Reverse-Depends
===
* ceph-iscsi(for python3-rbd)
* ceph-iscsi(for python3-rados)
* fio [amd64 arm64 ppc64el s390x]
* fio [amd64 arm64 ppc64el s390x]
* libvirt-daemon-driver-storage-rbd [amd64 arm64 armhf ppc64el s390x]
* libvirt-daemon-driver-storage-rbd [amd64 arm64 armhf ppc64el s390x]
* libxrdcephposix0 [amd64 arm64 ppc64el s390x]
* libxrdcephposix0 [amd64 arm64 ppc64el s390x]
* nfs-ganesha-ceph [amd64 arm64 ppc64el s390x]
* nfs-ganesha-ceph [amd64 arm64 ppc64el s390x]
* nfs-ganesha-rados-grace [amd64 arm64 ppc64el s390x]
* nfs-ganesha-rgw [amd64 arm64 ppc64el s390x]
* qemu-block-extra [amd64 arm64 ppc64el s390x]
* qemu-block-extra [amd64 arm64 ppc64el s390x]
* tcmu-runner [amd64 arm64 armhf ppc64el s390x]
* tgt-rbd [amd64 arm64 armhf ppc64el s390x]
* tgt-rbd [amd64 arm64 armhf ppc64el s390x]
* uwsgi-plugin-rados [amd64 arm64 armhf ppc64el s390x]

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

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

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

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

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

** Also affects: libvirt (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: tgt (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: tcmu (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: uwsgi (Ubuntu)
   Importance: Undecided
   Status: New

** Summary changed:

- Drop support for non-64 bit architectures
+ Drop support for non-64 bit architectures for ceph

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

Title:
  Drop support for non-64 bit architectures for ceph

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


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

[Bug 2060727] Re: The keyboard does not work after latest kernel update

2024-04-13 Thread James Fox
I have a Dell XPS 13 running Kubuntu 22.04. Keyboard works fine on fresh
boot but the keyboard doesnt work at all after resuming from suspend.

linux-image-6.5.0-27-generic is the kernel I started having the problem
with.

Booting an older 6.5 kernel and keyboard works again after resume.

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

Title:
  The keyboard does not work after latest kernel update

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


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

[Bug 2058750] Re: i915 GPU HANG: ecode 12:1:db96edba

2024-04-13 Thread James Chancellor
Another crash (viewing satellite images on windy.com) with a different
ecode:

Apr 13 20:32:58 james-xps kernel: [1286582.354762] i915 :00:02.0: [drm] 
*ERROR* GT0: GUC: Engine reset failed on 0:0 (rcs0) because 0x
Apr 13 20:32:58 james-xps kernel: [1286582.404294] i915 :00:02.0: [drm] GPU 
HANG: ecode 12:1:84db, in CanvasRenderer [366470]
Apr 13 20:32:58 james-xps kernel: [1286582.404465] i915 :00:02.0: [drm] 
Resetting chip for GuC failed to reset engine mask=0x1
Apr 13 20:32:58 james-xps kernel: [1286582.507012] i915 :00:02.0: [drm] 
*ERROR* rcs0 reset request timed out: {request: 0001, RESET_CTL: 0001}
Apr 13 20:32:58 james-xps kernel: [1286582.507733] i915 :00:02.0: [drm] 
*ERROR* rcs0 reset request timed out: {request: 0001, RESET_CTL: 0001}
Apr 13 20:32:58 james-xps kernel: [1286582.507886] i915 :00:02.0: [drm] 
CanvasRenderer[366470] context reset due to GPU hang
Apr 13 20:32:58 james-xps kernel: [1286582.507988] i915 :00:02.0: [drm] 
GT0: GuC firmware i915/adlp_guc_70.bin version 70.5.1
Apr 13 20:32:58 james-xps kernel: [1286582.507997] i915 :00:02.0: [drm] 
GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
Apr 13 20:32:58 james-xps kernel: [1286582.524574] i915 :00:02.0: [drm] 
GT0: HuC: authenticated for all workloads
Apr 13 20:32:58 james-xps kernel: [1286582.525447] i915 :00:02.0: [drm] 
GT0: GUC: submission enabled
Apr 13 20:32:58 james-xps kernel: [1286582.525448] i915 :00:02.0: [drm] 
GT0: GUC: SLPC enabled

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

Title:
  i915 GPU HANG: ecode 12:1:db96edba

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.5/+bug/2058750/+subscriptions


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

[Bug 2060760] Re: s390x/noble: HashMapRatingTest.test_create_threshold fails

2024-04-13 Thread James Page
** Changed in: cloudkitty (Ubuntu)
   Status: Fix Released => Triaged

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

Title:
  s390x/noble: HashMapRatingTest.test_create_threshold fails

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


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

[Bug 2053157] Re: Jammy: netplan permissions warnings

2024-04-11 Thread James Falcon
We intend this bug to be included in the SRU covered by
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2056100 . Any
testing related to this bug will be included there.

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

Title:
  Jammy: netplan permissions warnings

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/2053157/+subscriptions


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

[Bug 2008943] Please test proposed package

2024-04-11 Thread James Page
Hello Miro, or anyone else affected,

Accepted neutron into wallaby-proposed. The package will build now and
be available in the Ubuntu Cloud Archive in a few hours, and then in the
-proposed repository.

Please help us by testing this new package. To enable the -proposed
repository:

  sudo add-apt-repository cloud-archive:wallaby-proposed
  sudo apt-get update

Your feedback will aid us getting this update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-wallaby-needed to verification-wallaby-done. If it
does not fix the bug for you, please add a comment stating that, and
change the tag to verification-wallaby-failed. In either case, details
of your testing will help us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in
advance!

** Changed in: cloud-archive/wallaby
   Status: Fix Released => Fix Committed

** Tags added: verification-wallaby-needed

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

Title:
  OVN DB Sync utility cannot find NB DB Port Group

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/2008943/+subscriptions


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

  1   2   3   4   5   6   7   8   9   10   >