diff options
author | Stew Benedict <stewb@mandriva.org> | 2004-05-28 15:55:46 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2004-05-28 15:55:46 +0000 |
commit | 1017734abec215442073de1dfd7917fa6841f548 (patch) | |
tree | f70c67da0a2207bd8f85bee1bb9aafc5e9e7c094 | |
parent | fed509426a77c4ce90d7565e6860e198c447dc6e (diff) | |
download | drakx-1017734abec215442073de1dfd7917fa6841f548.tar drakx-1017734abec215442073de1dfd7917fa6841f548.tar.gz drakx-1017734abec215442073de1dfd7917fa6841f548.tar.bz2 drakx-1017734abec215442073de1dfd7917fa6841f548.tar.xz drakx-1017734abec215442073de1dfd7917fa6841f548.zip |
Typo in tape restore (Federico Belvisi).
-rwxr-xr-x | perl-install/standalone/drakbackup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 4bb5ea1ce..1eb1e3cca 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -3720,7 +3720,7 @@ sub get_file_from_tape { my $offset = find_tape_offset($cat_entry); spawn_progress("mt -f $dev_path rewind", "Rewinding tape on $dev_path."); spawn_progress("mt -f $dev_path fsf $offset", "Moving forward $offset file records."); - spawn_progress("tar -C cfg_dir/restores -xf $dev_path", "Untarring from $dev_path to work directory."); + spawn_progress("tar -C $cfg_dir/restores -xf $dev_path", "Untarring from $dev_path to work directory."); } sub restore_box() { |