Browse Source

Check at line 150 to make sure ib{/.} and $yich are defined.

master
freesource 23 years ago
parent
commit
1a233fa17b
  1. 34
      SWIM/MD.pm

34
SWIM/MD.pm

@ -131,23 +131,23 @@ sub process_md {
# now we get to take into account deinstall:ok:config-files # now we get to take into account deinstall:ok:config-files
# situations for an installed system. # situations for an installed system.
if ($commands->{"initdb"} || $commands->{"rebuilddb"}) { if ($commands->{"initdb"} || $commands->{"rebuilddb"}) {
sb(\%$commands); ib(\%commands); my $yich; sb(\%$commands); ib(\%commands); my $yich;
foreach (values %sb) { foreach (values %sb) {
my $zit; my ($nit,$yit) = (split(/\s/,$_))[0,3]; my $zit; my ($nit,$yit) = (split(/\s/,$_))[0,3];
if ($yit eq "deinstall:ok:config-files" || if ($yit eq "deinstall:ok:config-files" ||
$yit eq "purge:ok:config-files") { $yit eq "purge:ok:config-files") {
($zit = $nit) =~ s,\+,\\\+,; ($zit = $nit) =~ s,\+,\\\+,;
if ($ib{"/."} !~ m,$zit,) { if ($ib{"/."} !~ m,$zit,) {
if (!defined $yich) { if (!defined $yich) {
$yich = $nit; $yich = $nit;
} }
else { else {
$yich = $yich . " $nit"; $yich = $yich . " $nit";
} }
} }
} }
} }
$ib{"/."} = $ib{"/."} . " $yich"; $ib{"/."} = $ib{"/."} . " $yich" if defined $ib{"/."} && $yich;
} }
# after much experimentation it turns out that a flat text file # after much experimentation it turns out that a flat text file

Loading…
Cancel
Save