[Bug 1965983] [NEW] ZFS snapshots without etc directory causes grub.cfg build failure

2022-03-22 Thread Adam Bell
Public bug reported:

In /etc/grub.d/10_linux_zfs (built during install from 
util/grub.d/10_linux_zfs.in), get_dataset_info() tries to unmount mount 
locations starting with the logic
```
case "${etc_dir}" in /.zfs/snapshot/*/etc)
```

This process occasionally and silently fails while building /boot/grub/grub.cfg 
when running in FIPS mode (with FIPS kernels), which leaves the generated 
/boot/grub/grub.cfg without any kernel (linux ...) lines.
It appears that not all ZFS snapsshots that match the switch statement actually 
have an .../etc directory.

As ZFS is only an option in the Focal Desktop installer, this issue was
only tested with Focal running Canonical's FIPS packages.

In order to reproduce this issue in FIPS mode, the ubuntu-fips and fips-
initramfs-generic packages both need to implement a couple of patches
that haven't released yet. Without these two patches and without manual
intervention, the FIPS kernel will be unable to boot with a ZFS /boot
device. I can provide these additional patches -- please feel free to
reach out to me!

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

** Patch added: "Patch built for the grub2=2.04-1ubuntu26.13 package"
   
https://bugs.launchpad.net/bugs/1965983/+attachment/5571994/+files/grubcfg-zfs-snapshot-generation-failure.patch

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

Title:
  ZFS snapshots without etc directory causes grub.cfg build failure

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


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

[Bug 1942010] Re: Ensure lockout for failed password attempts is configured

2022-01-28 Thread Adam Bell
Since we have not heard back from you in this bug report since September and 
Richard was unable to reproduce the issue, we'll mark this as "Incomplete" for 
now.
Please feel free to add more information to this report if you'd like for us to 
troubleshoot more!

** Changed in: ubuntu-advantage-tools (Ubuntu)
   Status: In Progress => Incomplete

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

Title:
  Ensure lockout for failed password attempts is configured

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


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

[Bug 1943188] Re: Ensure chrony is configured (Automated)

2022-01-28 Thread Adam Bell
Since we have not heard back from you in this bug report since September and 
Richard was unable to reproduce the issue, we'll mark this as "Incomplete" for 
now.
Please feel free to add more information to this report if you'd like for us to 
troubleshoot more!

** Changed in: ubuntu-advantage-tools (Ubuntu)
   Status: In Progress => Incomplete

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

Title:
  Ensure chrony is configured (Automated)

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


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

[Bug 1943188] Re: Ensure chrony is configured (Automated)

2022-01-10 Thread Adam Bell
** Changed in: ubuntu-advantage-tools (Ubuntu)
 Assignee: Richard Maciel Costa (richardmaciel) => Adam Bell (arbell)

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

Title:
  Ensure chrony is configured (Automated)

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


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

[Bug 1942010] Re: Ensure lockout for failed password attempts is configured

2022-01-10 Thread Adam Bell
** Changed in: ubuntu-advantage-tools (Ubuntu)
 Assignee: Richard Maciel Costa (richardmaciel) => Adam Bell (arbell)

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

Title:
  Ensure lockout for failed password attempts is configured

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


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

[Bug 1931178] Re: apt-key fails when POSIXLY_CORRECT environmental variable is set

2021-06-08 Thread Adam Bell
>From my several brief tests, this does not appear to be a (recent)
regression.

I do see in the apt-key manpage that apt-key is deprecated as of Focal
and will be removed after Debian 11 / Ubuntu J/22.04. In the meantime,
the `cp some-repo-key.gpg /etc/apt/trusted.gpg.d` method has been
brought to the customer as a "workaround" / the new correct method.

The signed-by option is a good idea, too!

Thank you for your response letting us know that a change to apt-key
will be skipped.

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

Title:
  apt-key fails when POSIXLY_CORRECT environmental variable is set

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

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

[Bug 1931178] [NEW] apt-key fails when POSIXLY_CORRECT environmental variable is set

2021-06-07 Thread Adam Bell
Public bug reported:

apt-key fails when the POSIXLY_CORRECT environmental variable is set.
This is due to chmod acting differently with POSIXLY_CORRECT set: chmod tries 
to use `--` as a parameter with this variable.

This prevents some third-party utilities, like pmrun, from using apt-
key.

---

chmod with POSIXLY_CORRECT unset succeeds with the following commands:
```
touch testfile
chmod 0644 -- testfile
echo $?
```
The final command prints "0".
(This is what the apt-key script expects to happen.)

---

chmod with POSIXLY_CORRECT set fails with the following commands:
```
export POSIXLY_CORRECT=
touch testfile
chmod 0644 -- testfile
echo $?
```
The final two commands print these two lines, respectively:
"""
chmod: cannot access '--': No such file or directory
1
"""
(This is unexpected for the apt-key script.)

---

As such, when a third party utility that sets the POSIXLY_CORRECT environmental 
variable, like pmrun, tries to run apt-key, it will fail.
Example use similar to what the reporting customer tried: `cat 
some-repo-key.gpg | pmrun apt-key add -`

The chmod examples are run on an up-to-date Bionic container, /usr/bin/apt-key 
has `chmod  -- path` commands at line 338 and line 499:
GNU coreutils package version 8.28-1ubuntu1
apt package version 1.6.13

** Affects: apt (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/1931178

Title:
  apt-key fails when POSIXLY_CORRECT environmental variable is set

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

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

[Bug 1911228] Re: enable-fips doesn't work on bionic

2021-01-12 Thread Adam Bell
For reference, the correct instructions are at https://security-
certs.docs.ubuntu.com/en/fips#manual-installation

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

Title:
  enable-fips doesn't work on bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-advantage-script/+bug/1911228/+subscriptions

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

[Bug 1891296] Re: [plugin][snappy] Collect 'state.json' which may contain sensitive information (macaroons)

2020-10-07 Thread Adam Bell
PR (currently draft) created:
https://github.com/sosreport/sos/pull/2257; once we confirm that all the
necessary fields are omitted/removed, I'll make the PR official for the
sos team to review.

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

Title:
  [plugin][snappy] Collect 'state.json' which may contain sensitive
  information (macaroons)

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

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

[Bug 1881631] Re: arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

2020-06-02 Thread Adam Bell
@fginther

I opened this bug report on behalf of @brentk4 from a support ticket.
Please refer to the kernel that referenced in #4.

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

Title:
  arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

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

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

[Bug 1881631] [NEW] arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

2020-06-01 Thread Adam Bell
Public bug reported:

Remounting log mounts in Ubuntu core are failing on arm64 builds due to missing 
CONFIG_NLS_ASCII in the arm64 kernel build options.
This option is enabled on the other kernel builds but somehow was overlooked on 
arm64 appears to affect our ability to access logs via journalctl with data 
from prior to restart because certain mounts are failing.
Other Raspberry Pi kernel builds, such as the armhf build, have the option 
enabled and so do not encounter the mount error.
The kernel option that needs to be turned on to resolve this is 
CONFIG_NLS_ASCII. It needs to be set to either 'm' or 'y'. Most of the other 
chips have it set to 'y', keeping it built-in.

** Affects: linux-raspi2 (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/1881631

Title:
  arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

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

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

[Bug 1321144] Re: /etc/default/grub.d/xen.cfg only works on english language system

2019-11-04 Thread Adam Bell
Marking as "Incomplete" for Xenial. I was unable to reproduce this bug
on a current Xenial installation. If the fix was applied to the Xenial
package as it may have been, please update this bug report with the
relevant information.

** Changed in: xen (Ubuntu Zesty)
   Status: Triaged => Won't Fix

** Changed in: xen (Ubuntu Xenial)
   Status: Triaged => Incomplete

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

Title:
  /etc/default/grub.d/xen.cfg only works on english language system

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

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

[Bug 1171970] Re: Enable tmux bash completion by default

2019-11-04 Thread Adam Bell
I was unable to reproduce this issue in a current Xenial installation,
so it's possible that there was a correction to the Xenial package
sometime in the past couple of years.

I am going to mark the tmux->Xenial portion of this bug report
"incomplete" for the time. If someone knows with certainty that this was
corrected in a Xenial package, please update this bug report with the
relevant information.

** Changed in: tmux (Ubuntu Xenial)
   Status: Confirmed => Incomplete

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

Title:
  Enable tmux bash completion by default

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

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

[Bug 1493067] Re: ssh-copy-id fails by making assumptions about the default shell on the remote machine

2019-11-04 Thread Adam Bell
I am unsure whether anything was ever changed in the openssh package
(this may be an issue in the future with other shells), but this no
longer appears to be a problem in the Xenial fish package -- I was
unable to reproduce the issue with a current Xenial installation.

Also, the fish shell group has implemented "&&" into the shell now:
https://github.com/fish-shell/fish-shell/issues/4620

** Bug watch added: github.com/fish-shell/fish-shell/issues #4620
   https://github.com/fish-shell/fish-shell/issues/4620

** Changed in: fish (Ubuntu Xenial)
   Status: Confirmed => 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/1493067

Title:
  ssh-copy-id fails by making assumptions about the default shell on the
  remote machine

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

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

[Bug 1836961] Re: ansible 2.0.0.2-2ubuntu1.2 uninstallable on Ubuntu 16.04

2019-11-04 Thread Adam Bell
Fix released in the Ansible 2.0.0.2-2ubuntu1.3 package.

** Changed in: ansible (Ubuntu Xenial)
   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/1836961

Title:
  ansible 2.0.0.2-2ubuntu1.2 uninstallable on Ubuntu 16.04

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

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

[Bug 1276353] Re: package sun-javadb-client (not installed) failed to install/upgrade: trying to overwrite '/usr/share/java/derbyclient.jar', which is also in package libderbyclient-java 10.10.1.1-1

2019-11-04 Thread Adam Bell
This appears to still be an issue with the Xenial package, though it
also appears to have been corrected by the Bionic package. Please update
this bug report if there are any plans to backport the corrected package
to Xenial.

** Changed in: derby (Ubuntu Yakkety)
   Status: New => Won't Fix

** Changed in: sun-javadb (Ubuntu Yakkety)
   Status: New => Won't Fix

** Changed in: sun-javadb (Ubuntu Trusty)
   Status: New => Won't Fix

** Changed in: derby (Ubuntu Trusty)
   Status: New => Won't Fix

** Changed in: derby (Ubuntu Xenial)
   Status: New => Incomplete

** Changed in: sun-javadb (Ubuntu Xenial)
   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/1276353

Title:
  package sun-javadb-client (not installed) failed to install/upgrade:
  trying to overwrite '/usr/share/java/derbyclient.jar', which is also
  in package libderbyclient-java 10.10.1.1-1

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

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

[Bug 1684304] Re: nmap man page lacks port state headlines

2019-11-04 Thread Adam Bell
** Changed in: nmap (Ubuntu Xenial)
   Status: Triaged => Incomplete

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

Title:
  nmap man page lacks port state headlines

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

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

[Bug 1605956] Re: package missing in 16.04

2019-11-04 Thread Adam Bell
This issue appears to have been corrected by Bionic. Does anyone have a
plan to backport a package to Xenial?

** Changed in: bzr-fastimport (Ubuntu Xenial)
   Status: Confirmed => Incomplete

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

Title:
  package missing in 16.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bzr-fastimport/+bug/1605956/+subscriptions

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

[Bug 1742560] Re: zfsutils-linux recommends dkms when it's not needed

2019-11-04 Thread Adam Bell
Are there any plans to correct the Xenial's package?

** Changed in: zfs-linux (Ubuntu Xenial)
   Status: Confirmed => Incomplete

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

Title:
  zfsutils-linux recommends dkms when it's not needed

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

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

[Bug 1684304] Re: nmap man page lacks port state headlines

2019-11-04 Thread Adam Bell
** Changed in: nmap (Ubuntu Yakkety)
   Status: Triaged => Won't Fix

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

Title:
  nmap man page lacks port state headlines

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

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