diff options
author | Stew Benedict <stewb@mandriva.org> | 2002-09-23 13:43:27 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2002-09-23 13:43:27 +0000 |
commit | c6d7bf42cde85627517b9fb64a95da10a7b69ee4 (patch) | |
tree | 5b863f3784f5f26939b326ddfffa6459a161c8d0 | |
parent | 6f88bc8b89cf930b9b5c431978459bf4f3782ff4 (diff) | |
download | drakx-c6d7bf42cde85627517b9fb64a95da10a7b69ee4.tar drakx-c6d7bf42cde85627517b9fb64a95da10a7b69ee4.tar.gz drakx-c6d7bf42cde85627517b9fb64a95da10a7b69ee4.tar.bz2 drakx-c6d7bf42cde85627517b9fb64a95da10a7b69ee4.tar.xz drakx-c6d7bf42cde85627517b9fb64a95da10a7b69ee4.zip |
Fix daemon mode bug.
-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 67cd3a379..3449d88a4 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -1197,7 +1197,7 @@ sub build_backup_files { -d $save_path and @dir_content = all($save_path); grep (/^backup\_base\_sys/, @dir_content) and $base_sys_exist = 1; - if (($where_hd && !$daemon) || ($daemon && ($daemon_media eq 'hd'))) { + if (($where_hd && !$daemon) || ($daemon)) { $interactive and progress($pbar, 0.5, _("Backup system files...")); if ($backup_sys) { if ($backup_sys_versions) { |