diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-03 14:14:14 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-03 14:14:14 +0000 |
commit | 27a3bb1dba050201cc1eddd6049f576c205b56ea (patch) | |
tree | 8f22c089adfa6d0e155646c6bf6903022877b1f4 /move/pkgs.pm | |
parent | d4b2485da9522c4dd8a100db5bf62ae070971d76 (diff) | |
download | drakx-backup-do-not-use-27a3bb1dba050201cc1eddd6049f576c205b56ea.tar drakx-backup-do-not-use-27a3bb1dba050201cc1eddd6049f576c205b56ea.tar.gz drakx-backup-do-not-use-27a3bb1dba050201cc1eddd6049f576c205b56ea.tar.bz2 drakx-backup-do-not-use-27a3bb1dba050201cc1eddd6049f576c205b56ea.tar.xz drakx-backup-do-not-use-27a3bb1dba050201cc1eddd6049f576c205b56ea.zip |
need some dummy functions so that checking for installed packages behave correctly (testing with automatic printer configuration)
Diffstat (limited to 'move/pkgs.pm')
-rw-r--r-- | move/pkgs.pm | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/move/pkgs.pm b/move/pkgs.pm index 9fa952261..acc563852 100644 --- a/move/pkgs.pm +++ b/move/pkgs.pm @@ -1,5 +1,31 @@ +package pkg; + +sub flag_available { + log::l("(dummy pkg::flag_available called)"); + return 1; +} + + package pkgs; # $Id$ $ +use log; + +sub rpmDbOpen { + #- install_steps:343 +} + +sub packageByName { + #- install_steps:344 + return bless {}, 'pkg'; +} + +sub selectPackage { + #- install_steps:344 +} -#- dummy (use pkgs in perl-install/install_any.pm) +sub packagesToInstall { + #- install_steps:346 + return (); +} + 1; |