diff options
author | Sebastien Dupont <sdupont@mandriva.com> | 2001-11-30 18:36:07 +0000 |
---|---|---|
committer | Sebastien Dupont <sdupont@mandriva.com> | 2001-11-30 18:36:07 +0000 |
commit | 122f5e069e484253e6567c11b52f619d97e0b2e5 (patch) | |
tree | 5e838c8cf91cc1d1552abfc0f66df0323c55dc89 /perl-install/standalone | |
parent | a3d5079d63d53d7a639162a03a89fa8fdcfbee8a (diff) | |
download | drakx-122f5e069e484253e6567c11b52f619d97e0b2e5.tar drakx-122f5e069e484253e6567c11b52f619d97e0b2e5.tar.gz drakx-122f5e069e484253e6567c11b52f619d97e0b2e5.tar.bz2 drakx-122f5e069e484253e6567c11b52f619d97e0b2e5.tar.xz drakx-122f5e069e484253e6567c11b52f619d97e0b2e5.zip |
backend mode-> ok for hd
we can use drakbackup !.
todo :
backend mode:
- net
- cd
advanced mode:
- device detection (cd writer)
wizard:
- end of this step.
gi:
- option step in adnanced step to choice
for example tar.gz or tar.gz2 ...
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakbackup | 55 |
1 files changed, 50 insertions, 5 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 3313d6ff1..1edbd6818 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -245,7 +245,44 @@ sub build_cd_fct { sub build_floppy_fct { } +sub status_report { + my $table; + my $pbar = new Gtk::ProgressBar; + my $pbar1 = new Gtk::ProgressBar; + my $pbar2 = new Gtk::ProgressBar; + my $pbar3 = new Gtk::ProgressBar; + gtkpack($up_box, + $table = create_packtable({ col_spacings => 10, row_spacings => 50}, + ["",""], + [_("Backup system files"), $pbar, $pbar->{label} = new Gtk::Label(' ' )], + [_("Backup user files"), $pbar1,$pbar1->{label} = new Gtk::Label(' ' ) ], + [_("Backup other files"), $pbar2, $pbar2->{label} = new Gtk::Label(' ' ) ], + [_("Post Install"), $pbar3,$pbar3->{label} = new Gtk::Label(' ' ) ], + ), + ); + $central_widget = \$table; + $up_box->show_all(); + Gtk->main_iteration while Gtk->events_pending; + +} + sub build_backup_files { + if ($where_hd) { + $backup_sys and system("tar cvfz $save_path/backup_sys.tar.gz @sys_files"); + @list_other and system("tar cvfz $save_path/backup_other.tar.gz @list_other"); + if ($backup_user) { + foreach (@user_list) { + system("tar cvfz $save_path/backup_user_$_.tar.gz /home/$_"); + } + } + } + if ($where_net) { + + } + if ($where_cd) { + + } + } @@ -771,12 +808,18 @@ sub restore { $retore_box3->destroy(); }), 0, gtksignal_connect(new Gtk::Button(_("Custom Restore")), clicked => sub { - $retore_box3->destroy(); + $retore_box3->destroy(); gtkpack($retore_box2, $retore_box3 = gtkpack_(new Gtk::VBox(0,10), - new Gtk::VBox(0,10), - new Gtk::Button("toto"),), - ), + 1, new Gtk::VBox(0,10), + 0, my $check_restore_sys = new Gtk::CheckButton(_("Restore system")), + 0, my $check_restore_user = new Gtk::CheckButton(_("Restore Users")), + 0, my $check_restore_other = new Gtk::CheckButton(_("Restore Other")), + 1, new Gtk::VBox(0,10), + 0, gtkpack_(new Gtk::HBox(0,10), + 0, new Gtk::Button(_("Custom Restore")), + ), + ),), }), ), 1, new Gtk::HBox(0,10), @@ -856,7 +899,9 @@ sub interactive_mode_my { 0, new Gtk::Pixmap($pix_r_map, $pix_r_mask), 1, gtkpack_(new Gtk::VBox(0, 1), 1, gtksignal_connect(new Gtk::Button(_(" Build Backup ")), - clicked => sub { Gtk->main_quit() }), + clicked => sub {# ${$central_widget}->destroy(); + # status_report(); + build_backup_files(); }), 1, gtksignal_connect(new Gtk::Button(_(" Restore ")), clicked => sub {${$central_widget}->destroy(); restore();}), ), |