diff options
author | 2004-04-07 08:13:03 +0000 | |
---|---|---|
committer | 2004-04-07 08:13:03 +0000 | |
commit | d711fb42bf55f44aee0f1f5484a0e0b3c61fc38f (patch) | |
tree | 9c8f302b8bd2137ed7c4cf4f298ffa3f83e18816 /app-admin/webmin/files | |
parent | stable bump for x86 (Manifest recommit) (diff) | |
download | gentoo-2-d711fb42bf55f44aee0f1f5484a0e0b3c61fc38f.tar.gz gentoo-2-d711fb42bf55f44aee0f1f5484a0e0b3c61fc38f.tar.bz2 gentoo-2-d711fb42bf55f44aee0f1f5484a0e0b3c61fc38f.zip |
Fix bug #47020.
Diffstat (limited to 'app-admin/webmin/files')
-rw-r--r-- | app-admin/webmin/files/digest-webmin-1.130-r1 | 1 | ||||
-rw-r--r-- | app-admin/webmin/files/webmin-1.130-webalizer.patch | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/app-admin/webmin/files/digest-webmin-1.130-r1 b/app-admin/webmin/files/digest-webmin-1.130-r1 new file mode 100644 index 000000000000..7eea20c4956b --- /dev/null +++ b/app-admin/webmin/files/digest-webmin-1.130-r1 @@ -0,0 +1 @@ +MD5 32942590125673df578e032e2a4dbcfb webmin-1.130.tar.gz 6888140 diff --git a/app-admin/webmin/files/webmin-1.130-webalizer.patch b/app-admin/webmin/files/webmin-1.130-webalizer.patch new file mode 100644 index 000000000000..55d3e3627cb9 --- /dev/null +++ b/app-admin/webmin/files/webmin-1.130-webalizer.patch @@ -0,0 +1,18 @@ +--- webalizer-lib.pl.orig 2004-04-07 01:08:50.000000000 -0700 ++++ webalizer-lib.pl 2004-04-07 01:08:15.000000000 -0700 +@@ -176,10 +176,11 @@ + local $cmd = "$config{'webalizer'} $conf -o '$lconf->{'dir'}' $type -p '$a'"; + if ($user ne "root") { + local $shell; +- if ($config{'su_shell'}) { +- $shell = " -s /bin/sh"; +- } +- $cmd = "su ".quotemeta($user)." $shell -c ".quotemeta($cmd); ++# Gentoo borkage ++# if ($config{'su_shell'}) { ++# $shell = " -s /bin/sh"; ++# } ++ $cmd = "/bin/su ".quotemeta($user)." $shell -c ".quotemeta($cmd); + } + open(OUT, "$cmd 2>&1 |"); + while(<OUT>) { |