diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-12 13:51:42 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-12 13:51:42 +0000 |
commit | 0ab7ebe78a682d07010cd2242748c57346cca480 (patch) | |
tree | b6f016a69016f57047cc5ab44ba0766384e11410 /perl-install/install_steps.pm | |
parent | 08118de09b6b4c23db243e6eabef4236dcb213cc (diff) | |
download | drakx-0ab7ebe78a682d07010cd2242748c57346cca480.tar drakx-0ab7ebe78a682d07010cd2242748c57346cca480.tar.gz drakx-0ab7ebe78a682d07010cd2242748c57346cca480.tar.bz2 drakx-0ab7ebe78a682d07010cd2242748c57346cca480.tar.xz drakx-0ab7ebe78a682d07010cd2242748c57346cca480.zip |
- install_steps_auto_install is not a interactive but still needs do_pkgs
- so making do_pkgs a class, and interactive and install_steps will inheritate from it
- do_pkgs renamed into do_pkgs_common, containing the things common to do_pkgs_during_install and do_pkgs_standalone
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 25be3e91c..5d0b6ff94 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -2,7 +2,7 @@ package install_steps; # $Id$ use diagnostics; use strict; -use vars qw(@filesToSaveForUpgrade @filesNewerToUseAfterUpgrade @ISA); +use vars qw(@filesToSaveForUpgrade @filesNewerToUseAfterUpgrade); #-###################################################################################### #- misc imports @@ -22,6 +22,8 @@ use any; use log; use fs; +our @ISA = qw(do_pkgs); + @filesToSaveForUpgrade = qw( /etc/ld.so.conf /etc/fstab /etc/hosts /etc/conf.modules /etc/modules.conf ); |