diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2000-09-19 16:45:48 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2000-09-19 16:45:48 +0000 |
commit | ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe (patch) | |
tree | 944618efb81b3282f0e0d173c13ea7223bb9d3e7 /perl-install/interactive_newt.pm | |
parent | 5a487a674f320081abd558bcdbfe305d00cbdc96 (diff) | |
download | drakx-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.tar drakx-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.tar.gz drakx-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.tar.bz2 drakx-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.tar.xz drakx-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.zip |
changed `suspend' and `resume' to behave as expected.
added `enter_console' and `leave_console' for install_interactive::use_fdisk
Diffstat (limited to 'perl-install/interactive_newt.pm')
-rw-r--r-- | perl-install/interactive_newt.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/interactive_newt.pm b/perl-install/interactive_newt.pm index 845bb0767..9aa80b4c8 100644 --- a/perl-install/interactive_newt.pm +++ b/perl-install/interactive_newt.pm @@ -23,6 +23,8 @@ sub new() { bless {}, $_[0]; } +sub enter_console { Newt::Suspend } +sub leave_console { Newt::Suspend } sub suspend { Newt::Suspend } sub resume { Newt::Resume } sub end() { Newt::Finished } |