[Touch-packages] [Bug 1743873] [NEW] rsync version for xenial

2018-01-17 Thread Jeff Norden
Public bug reported:

Any chance that rsync could be updated to 3.1.2 for xenial?

The --backup-dir option in 3.1.1 doesn't work properly - it creates
empty directories even when no files need to be put in them.

Thanks,
-Jeff

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

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

Title:
  rsync version for xenial

Status in rsync package in Ubuntu:
  New

Bug description:
  Any chance that rsync could be updated to 3.1.2 for xenial?

  The --backup-dir option in 3.1.1 doesn't work properly - it creates
  empty directories even when no files need to be put in them.

  Thanks,
  -Jeff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rsync/+bug/1743873/+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 1556516] Re: passwd and group entries are not removed on logout from a guest session

2016-03-23 Thread Jeff Norden
Great!  Thanks for incorporating my suggestion so quickly!

regards,
-Jeff

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

Title:
  passwd and group entries are not removed on logout from a guest
  session

Status in lightdm package in Ubuntu:
  Fix Released

Bug description:
  When a guest session is finished, the guest-  entries don't get
  removed from /etc/passwd and /etc/group (at least they don't always
  get removed).   The problem is that the userdel command in the
  /usr/sbin/guest-account script fails because some of the guest
  processes are not yet dead at the time that it runs.  An earlier line
  in the script uses loginctl to tell systemd to kill the guest's
  processes, but this isn't completed by the time that userdel runs.

  The simplest fix is to just call userdel with the --force flag, so
  that it removes the password and group entries even if the processes
  are still there.  This doesn't cause any problems.  The lingering
  guest- processes are gone by the time you log in as a regular
  user.

  A trivial patch file for /usr/sbin/guest-account is attached.   Also,
  the 2008 copyright at the top of the file should really be updated!  I
  don't think that loginctl existed in 2008 (ah, the good ole days :)

  Here is the tail of some debugging output that I obtained by modifying
  /usr/sbin/guest-account so that I could see what it was going on.
  This confirms the behavior that I mentioned above.

  + GUEST_HOME=/tmp/guest-8iwujo
  + [ -x /bin/loginctl ]
  + loginctl kill-user guest-8iwujo
  + [ /tmp/guest-8iwujo = guest-8iwujo ]
  + umount /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: target is busy
  (In some cases useful info about processes that
   use the device is found by lsof(8) or fuser(1).)
  + umount -l /tmp/guest-8iwujo
  + umount /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: not mounted
  + umount -l /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: not mounted
  + true
  + umount /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: not mounted
  + umount -l /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: not mounted
  + true
  + rm -rf /tmp/guest-8iwujo
  + xargs -0 rm -rf
  + find /tmp -mindepth 1 -maxdepth 1 -uid 999 -print0
  + [ -d /run/media/guest-8iwujo ]
  + [ -d /media/guest-8iwujo ]
  + ps -lww -u guest-8iwujo
  F S   UID   PID  PPID  C PRI  NI ADDR SZ WCHAN  TTY  TIME CMD
  0 S   999  7128 1  0  80   0 - 88460 poll_s ?00:00:00 
at-spi-bus-laun
  0 R   999  7214 1  0  80   0 - 162593 - ?00:00:00 nm-applet
  0 R   999  7222 1  1  80   0 - 138676 - ?00:00:00 tilda
  + userdel guest-8iwujo
  userdel: user guest-8iwujo is currently used by process 7128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1556516/+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 1556516] Re: passwd and group entries are not removed on logout from a guest session

2016-03-19 Thread Jeff Norden
** Project changed: lightdm => lightdm (Ubuntu)

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

Title:
  passwd and group entries are not removed on logout from a guest
  session

Status in lightdm package in Ubuntu:
  New

Bug description:
  When a guest session is finished, the guest-  entries don't get
  removed from /etc/passwd and /etc/group (at least they don't always
  get removed).   The problem is that the userdel command in the
  /usr/sbin/guest-account script fails because some of the guest
  processes are not yet dead at the time that it runs.  An earlier line
  in the script uses loginctl to tell systemd to kill the guest's
  processes, but this isn't completed by the time that userdel runs.

  The simplest fix is to just call userdel with the --force flag, so
  that it removes the password and group entries even if the processes
  are still there.  This doesn't cause any problems.  The lingering
  guest- processes are gone by the time you log in as a regular
  user.

  A trivial patch file for /usr/sbin/guest-account is attached.   Also,
  the 2008 copyright at the top of the file should really be updated!  I
  don't think that loginctl existed in 2008 (ah, the good ole days :)

  Here is the tail of some debugging output that I obtained by modifying
  /usr/sbin/guest-account so that I could see what it was going on.
  This confirms the behavior that I mentioned above.

  + GUEST_HOME=/tmp/guest-8iwujo
  + [ -x /bin/loginctl ]
  + loginctl kill-user guest-8iwujo
  + [ /tmp/guest-8iwujo = guest-8iwujo ]
  + umount /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: target is busy
  (In some cases useful info about processes that
   use the device is found by lsof(8) or fuser(1).)
  + umount -l /tmp/guest-8iwujo
  + umount /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: not mounted
  + umount -l /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: not mounted
  + true
  + umount /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: not mounted
  + umount -l /tmp/guest-8iwujo
  umount: /tmp/guest-8iwujo: not mounted
  + true
  + rm -rf /tmp/guest-8iwujo
  + xargs -0 rm -rf
  + find /tmp -mindepth 1 -maxdepth 1 -uid 999 -print0
  + [ -d /run/media/guest-8iwujo ]
  + [ -d /media/guest-8iwujo ]
  + ps -lww -u guest-8iwujo
  F S   UID   PID  PPID  C PRI  NI ADDR SZ WCHAN  TTY  TIME CMD
  0 S   999  7128 1  0  80   0 - 88460 poll_s ?00:00:00 
at-spi-bus-laun
  0 R   999  7214 1  0  80   0 - 162593 - ?00:00:00 nm-applet
  0 R   999  7222 1  1  80   0 - 138676 - ?00:00:00 tilda
  + userdel guest-8iwujo
  userdel: user guest-8iwujo is currently used by process 7128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1556516/+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 1559513] Re: passwd and group entries are not removed on logout from a guest session Edit

2016-03-19 Thread Jeff Norden
The relevant lines fromt the LightdmLog.txt file which is attached above
are:

[+135.46s] DEBUG: Closing guest account guest-2kgkn2 with command 
'/usr/sbin/guest-account remove guest-2kgkn2'
[+135.67s] DEBUG: Guest account cleanup script returns 2048
[+135.87s] DEBUG: Seat seat0 changes active session to 
[+135.87s] CRITICAL: session_get_login1_session_id: assertion 'session != NULL' 
failed

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

Title:
  passwd and group entries are not removed on logout from a guest
  session Edit

Status in lightdm package in Ubuntu:
  New

Bug description:
  See bug #1556516 for details and a patch file to fix the problem.
  I filed that directly, before I discovered ubuntu-bug.  
  This bug occurs for me using the mate desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: lightdm 1.17.6-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  Uname: Linux 4.4.0-12-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  CurrentDesktop: MATE
  Date: Sat Mar 19 12:31:19 2016
  InstallationDate: Installed on 2016-03-08 (11 days ago)
  InstallationMedia: Ubuntu-MATE 16.04 LTS "Xenial Xerus" - Alpha amd64 
(20160224)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1559513/+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 1559513] [NEW] passwd and group entries are not removed on logout from a guest session Edit

2016-03-19 Thread Jeff Norden
Public bug reported:

See bug #1556516 for details and a patch file to fix the problem.
I filed that directly, before I discovered ubuntu-bug.  
This bug occurs for me using the mate desktop.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: lightdm 1.17.6-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
Uname: Linux 4.4.0-12-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
ApportVersion: 2.20-0ubuntu3
Architecture: amd64
CurrentDesktop: MATE
Date: Sat Mar 19 12:31:19 2016
InstallationDate: Installed on 2016-03-08 (11 days ago)
InstallationMedia: Ubuntu-MATE 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
SourcePackage: lightdm
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  passwd and group entries are not removed on logout from a guest
  session Edit

Status in lightdm package in Ubuntu:
  New

Bug description:
  See bug #1556516 for details and a patch file to fix the problem.
  I filed that directly, before I discovered ubuntu-bug.  
  This bug occurs for me using the mate desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: lightdm 1.17.6-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  Uname: Linux 4.4.0-12-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  CurrentDesktop: MATE
  Date: Sat Mar 19 12:31:19 2016
  InstallationDate: Installed on 2016-03-08 (11 days ago)
  InstallationMedia: Ubuntu-MATE 16.04 LTS "Xenial Xerus" - Alpha amd64 
(20160224)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1559513/+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