Ticket #5975: mythtv-5975-restore-exclude_script_from_file_selection-20081206.patch

File mythtv-5975-restore-exclude_script_from_file_selection-20081206.patch, 1.4 KB (added by sphery <mtdean@…>, 17 years ago)

Updated patch

  • programs/scripts/database/mythconverg_restore.pl

    old new  
    1313
    1414# Script info
    1515    $NAME           = 'MythTV Database Restore Script';
    16     $VERSION        = '1.0.2';
     16    $VERSION        = '1.0.3';
    1717
    1818# Some variables we'll use here
    1919    our ($username, $homedir, $mythconfdir, $database_information_file);
     
    769769                }
    770770            }
    771771            my @files = <$backup_conf{'directory'}/$backup_conf{'filename'}*>;
     772            @files = grep(!/.*mythconverg_(backup|restore).pl$/, @files);
    772773            my $num_files = @files;
    773774            if ($num_files < 1)
    774775            {
     
    919920        my $exit = $? >> 8;
    920921        verbose($verbose_level_debug,
    921922                "\n$mysql_client exited with status:  $exit");
    922         verbose($verbose_level_error,
    923                 "$mysql_client output:", $result) if ($exit);
    924         die("\nUnable to create initial database, stopped");
     923        if ($exit)
     924        {
     925            verbose($verbose_level_error,
     926                    "$mysql_client output:", $result);
     927            die("\nUnable to create initial database, stopped");
     928        }
    925929        return $exit;
    926930    }
    927931