Launchpad has imported 11 comments from the remote bug at
https://bugzilla.redhat.com/show_bug.cgi?id=611009.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.

------------------------------------------------------------------------
On 2010-07-03T05:12:38+00:00 Ralf wrote:

Description of problem:
The release of perl in rawhide does not support perl-suidperl.

BackupPC is the last remaining package which requires perl-suidperl.
It therefore shows up as package with broken deps in rawhide package deps 
reports, e.g.
http://lists.fedoraproject.org/pipermail/devel/2010-July/138206.html

i.e. this package is not installable under rawhide


Version-Release number of selected component (if applicable):
BackupPC-0:3.1.0-14.fc14

Additional info:
This package will have to be removed from 
Fedora >=14, should this issue not be resolved.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/0

------------------------------------------------------------------------
On 2010-07-03T06:24:49+00:00 Iain wrote:

One simple option would be to create a C wrapper for BackupPC_Admin
script and make that setuid instead of the script itself.

See http://perldoc.perl.org/perlsec.html#Security-Bugs for more details.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/1

------------------------------------------------------------------------
On 2010-07-03T08:20:44+00:00 Johan wrote:

I've mailed upstream about that issue:
- 
http://sourceforge.net/mailarchive/forum.php?thread_name=4C2EEAA6.7090004%40x-tnd.be&forum_name=backuppc-users
- 
http://sourceforge.net/mailarchive/forum.php?thread_name=4C2EF16A.1070505%40x-tnd.be&forum_name=backuppc-devel

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/2

------------------------------------------------------------------------
On 2010-07-03T09:04:15+00:00 Iain wrote:

There's also a debian bug about the same issue, but little progress.

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=581950

Using a C wrapper is really quite simple. Move the existing
BackupPC_Admin script to BackupPC_Admin.pl, compile the wrapper and
install as /usr/share/BackupPC/sbin/BackupPC_Admin with permissions
4755.

#include <unistd.h>
#ifndef REAL_PATH
#define REAL_PATH "/usr/share/BackupPC/sbin/BackupPC_Admin.pl"
#endif
int main(ac, av)
char **av;
{
    execv(REAL_PATH, av);
    return 0;
}

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/3

------------------------------------------------------------------------
On 2010-07-03T09:21:05+00:00 Johan wrote:

Thank for the tip Iain :)

I will probably use that to fix the current issue (I really do not want
to see BackupPC disappear from repositories).

I won't have tiome for that until next week (I'm very overbooked this
week), I hope having some advices from upstream until that.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/4

------------------------------------------------------------------------
On 2010-07-03T20:34:55+00:00 Johan wrote:

Someone on BackupPC users mailing list tell me I can use apache suid
mechanism
(http://sourceforge.net/mailarchive/forum.php?thread_name=4C2F62D4.3010702%40gmail.com&forum_name
=backuppc-users).

What do you think about this solution?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/5

------------------------------------------------------------------------
On 2010-07-04T06:39:47+00:00 Iain wrote:

Unfortunately, I don't think you'll be able to use apache's suexec
mechanism. It's configured at compile time to only execute programs that
live under /var/www (and packaging guidelines forbids packages from
installing anything under /var/www), and to only execute programs as a
user with uid >= 500 and gid >= 100.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/6

------------------------------------------------------------------------
On 2010-07-30T12:25:02+00:00 Bug wrote:


This bug appears to have been reported against 'rawhide' during the Fedora 14 
development cycle.
Changing version to '14'.

More information and reason for this action is here:
http://fedoraproject.org/wiki/BugZappers/HouseKeeping

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/7

------------------------------------------------------------------------
On 2010-07-31T20:44:59+00:00 Fedora wrote:

BackupPC-3.1.0-15.fc14 has been submitted as an update for Fedora 14.
http://admin.fedoraproject.org/updates/BackupPC-3.1.0-15.fc14

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/8

------------------------------------------------------------------------
On 2010-08-01T19:27:38+00:00 Fedora wrote:

BackupPC-3.1.0-15.fc14 has been pushed to the Fedora 14 testing repository.  If 
problems still persist, please make note of it in this bug report.
 If you want to test the update, you can install it with 
 su -c 'yum --enablerepo=updates-testing update BackupPC'.  You can provide 
feedback for this update here: 
http://admin.fedoraproject.org/updates/BackupPC-3.1.0-15.fc14

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/9

------------------------------------------------------------------------
On 2010-08-03T02:19:59+00:00 Fedora wrote:

BackupPC-3.1.0-15.fc14 has been pushed to the Fedora 14 stable
repository.  If problems still persist, please make note of it in this
bug report.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/786250/comments/10


** Changed in: backuppc (Fedora)
       Status: Unknown => Fix Released

** Changed in: backuppc (Fedora)
   Importance: Unknown => High

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

Title:
  Remove dependency on perl-suid for Perl 5.12

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

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

Reply via email to