diff options
author | Stew Benedict <stewb@mandriva.org> | 2004-06-15 13:47:44 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2004-06-15 13:47:44 +0000 |
commit | 1e5c90808141fa07c4f547c835dadc16b308c592 (patch) | |
tree | 8b4f6c660169afe4ecddf7b79a5f9c0c9dd308d5 /perl-install/standalone | |
parent | b5088d550d815ae993866329707a915bef05265d (diff) | |
download | drakx-1e5c90808141fa07c4f547c835dadc16b308c592.tar drakx-1e5c90808141fa07c4f547c835dadc16b308c592.tar.gz drakx-1e5c90808141fa07c4f547c835dadc16b308c592.tar.bz2 drakx-1e5c90808141fa07c4f547c835dadc16b308c592.tar.xz drakx-1e5c90808141fa07c4f547c835dadc16b308c592.zip |
.backupignore issues (email reports), typo in "other" routine
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakbackup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index acadd8be7..5447c77e8 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -1027,7 +1027,7 @@ sub build_backup_files() { my $list_file = name_list_file($incr . $user); do_find($more_recent, $find_args_user, $list_file, $path_name); if (check_rm_list($list_file)) { - do_tar($tar_cmd_user, "backup_$incr$user", $list_file, undef); + do_tar($tar_cmd_cuser, "backup_$incr$user", $list_file, undef); } $first_done = 1; } else { @@ -1039,7 +1039,7 @@ sub build_backup_files() { } if (!$first_done) { my $list_file = name_list_file($incr . $user); - do_find(undef, $find_args_user, $list_file, $path_name); + do_find(undef, $find_args_cuser, $list_file, $path_name); do_tar($tar_cmd_user, "backup_$incr$user", undef, $path_name); } push_list("list_$incr$user") if $incr =~ /_user/; @@ -1076,7 +1076,7 @@ sub build_backup_files() { if (!$first_done) { my $list_file = name_list_file($incr); do_find(undef, $find_args_other, $list_file, @other_files); - do_tar($tar_cmd_user, "backup_$incr", undef, @other_files); + do_tar($tar_cmd_other, "backup_$incr", undef, @other_files); } push_list("list_$incr") if $incr =~ /_other/; files_to_results($incr); |