[Touch-packages] [Bug 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration failure

2016-04-11 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 204-5ubuntu20.19

---
systemd (204-5ubuntu20.19) trusty-proposed; urgency=medium

  * Add upstream-uaccess-Add-new-DRM-render-nodes.patch: Add uaccess tag for
"renderD*" devices for AMD GPUs. (LP: #1536438)
  * libpam-systemd: Don't restart logind on upgrades, this confuses too many
clients and causes effects like screen blanking. (LP: #1473800)
  * debian/extra/initramfs.hook: Fix typo in path of udevadm.upgrade : The
binary is /bin/udevadm.upgrade while udev is unpacked and not configured
(see debian/udev.{pre,post}inst. (LP: #1535255)

 -- Martin Pitt   Thu, 25 Feb 2016 16:49:20
+0100

** Changed in: systemd (Ubuntu Trusty)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1535255

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Fix Released

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /bin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This bug is quite important as when update-initramfs -u fails the
  system can be left in an unbootable state.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration failure

2016-02-26 Thread Martin Pitt
** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1535255

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Fix Committed

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /bin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This bug is quite important as when update-initramfs -u fails the
  system can be left in an unbootable state.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Touch-packages] [Bug 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration failure

2016-02-26 Thread wayne
That fixes the problem. Thanks

On Thu, Feb 25, 2016 at 8:57 PM, Brian Murray  wrote:

> Hello wayne, or anyone else affected,
>
> Accepted systemd into trusty-proposed. The package will build now and be
> available at
> https://launchpad.net/ubuntu/+source/systemd/204-5ubuntu20.19 in a few
> hours, and then in the -proposed repository.
>
> Please help us by testing this new package.  See
> https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
> enable and use -proposed.  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-needed to verification-done. If it does not fix the
> bug for you, please add a comment stating that, and change the tag to
> verification-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: systemd (Ubuntu Trusty)
>Status: In Progress => Fix Committed
>
> ** Tags added: verification-needed
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1535255
>
> Title:
>   Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
>   configuration failure
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1535255/+subscriptions
>

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1535255

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Fix Committed

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /bin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This bug is quite important as when update-initramfs -u fails the
  system can be left in an unbootable state.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration failure

2016-02-25 Thread Brian Murray
Hello wayne, or anyone else affected,

Accepted systemd into trusty-proposed. The package will build now and be
available at
https://launchpad.net/ubuntu/+source/systemd/204-5ubuntu20.19 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  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-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-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: systemd (Ubuntu Trusty)
   Status: In Progress => Fix Committed

** Tags added: verification-needed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1535255

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Fix Committed

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /bin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This bug is quite important as when update-initramfs -u fails the
  system can be left in an unbootable state.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration failure

2016-02-25 Thread Martin Pitt
** Changed in: systemd (Ubuntu Trusty)
   Status: Triaged => In Progress

** Description changed:

  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.
  
  if [ -x /sbin/udevadm.upgrade ]; then
- copy_exec /bin/udevadm.upgrade /bin/udevadm
+ copy_exec /bin/udevadm.upgrade /bin/udevadm
  
  This is what is should be from build 175
  
- if [ -x /sbin/udevadm.upgrade ]; then
- copy_exec /sbin/udevadm.upgrade /bin/udevadm
+ if [ -x /bin/udevadm.upgrade ]; then
+ copy_exec /bin/udevadm.upgrade /bin/udevadm
  
- 
- This bug is quite important as when update-initramfs -u fails the system can 
be left in an unbootable state.
+ This bug is quite important as when update-initramfs -u fails the system
+ can be left in an unbootable state.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1535255

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  In Progress

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /bin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This bug is quite important as when update-initramfs -u fails the
  system can be left in an unbootable state.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration failure

2016-02-11 Thread Martin Pitt
** Changed in: systemd (Ubuntu Trusty)
 Assignee: (unassigned) => Martin Pitt (pitti)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1535255

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Triaged

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /sbin/udevadm.upgrade /bin/udevadm

  
  This bug is quite important as when update-initramfs -u fails the system can 
be left in an unbootable state.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration failure

2016-01-18 Thread wayne
Sorry, yes, I'm running 14.04 LTS.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1535255

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Triaged

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /sbin/udevadm.upgrade /bin/udevadm

  
  This bug is quite important as when update-initramfs -u fails the system can 
be left in an unbootable state.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp