Lines Matching refs:installer

24 package installer::packagelist;
26 use installer::converter;
27 use installer::exiter;
28 use installer::globals;
29 use installer::remover;
30 use installer::scriptitems;
74 installer::remover::remove_leading_and_ending_whitespaces(\$onegid);
264 my $moduleslist = installer::converter::convert_stringlist_into_array(\$modulesstring, ",");
274 installer::remover::remove_leading_and_ending_whitespaces(\$filemodule);
401 my $moduleslist = installer::converter::convert_stringlist_into_array(\$modulesstring, ",");
411 installer::remover::remove_leading_and_ending_whitespaces(\$dirmodule);
502 …if ( ! ( $#{$packages} > -1 )) { installer::exiter::exit_program("ERROR: No packages defined!", "c…
512 foreach $element (@installer::globals::packagelistitems)
516installer::exiter::exit_program("ERROR in package list: No value for $element !", "check_packageli…
526 …my $fileref = installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$scriptfile, "…
528 …if ( $$fileref eq "" ) { installer::exiter::exit_program("ERROR: Could not find script file $scrip…
530 $installer::logger::Lang->printf("%s: Using script file: \"%s\"!\n", $gid, $$fileref);
545 my $packagelist = installer::files::read_file($filename);
625installer::exiter::exit_program("ERROR: Could not find package info for module $gid in file \"$fil…
637 installer::logger::include_header_into_logfile("Collecting packages:");
646 …if (( $installer::globals::tab ) && ( $onemodule->{"TabPackageInfo"} )) { $packageinfo = "TabPacka…
677 …my $fileref = installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$packinfofile,…
679 …if ( $$fileref eq "" ) { installer::exiter::exit_program("ERROR: Could not find file $packinfofile…
681 $installer::logger::Lang->printf("%s: Using packinfo: \"%s\"!\n", $modulegid, $$fileref);
698 …if ( ! ( $#{$packages} > -1 )) { installer::exiter::exit_program("ERROR: No packages defined!", "p…
700 installer::logger::include_header_into_logfile("Logging packages content:");
710 $installer::logger::Lang->printf("Package %s\n", $onepackage->{'module'});
719 $installer::logger::Lang->printf("\t%s:\n", $key);
723 $installer::logger::Lang->printf("\t\t%s\n", $onemodule);
728 $installer::logger::Lang->printf("\t%s: %s\n", $key, $onepackage->{$key});
732 $installer::logger::Lang->printf("\n");
758 $installer::globals::moduledestination{$onemodule} = $defaultdestination;
777 …if ( ! $onefile->{'destination'} ) { installer::exiter::exit_program("ERROR: No destination found …
780 …if ( ! $onefile->{'modules'} ) { installer::exiter::exit_program("ERROR: No modules found at file …
785 …if ( ! exists($installer::globals::moduledestination{$module}) ) { installer::exiter::exit_program…
786 my $defaultpath = $installer::globals::moduledestination{$module};
788 my $fulldestpath = $defaultpath . $installer::globals::separator . $destination;
802 …if ( ! ( $#{$packages} > -1 )) { installer::exiter::exit_program("ERROR: No packages defined!", "p…
804 installer::logger::include_header_into_logfile("Preparing cabinet files:");
816 $installer::globals::allcabinets{$cabinetfile} = 1;
820 $installer::logger::Lang->printf("Package %s\n", $onepackage->{'module'});
827 if ( ! exists($installer::globals::allcabinetassigns{$onemodule}) )
829 $installer::globals::allcabinetassigns{$onemodule} = $cabinetfile;
833 $installer::logger::Lang->printf("Warning: Already existing assignment: %s : %s\n",
835 $installer::globals::allcabinetassigns{$onemodule});
836 $installer::logger::Lang->printf("Ignoring further assignment: %s : %s\n",
850 installer::logger::include_header_into_logfile("Logging cabinet files:");
852 $installer::logger::Lang->printf("List of cabinet files:\n");
855 foreach $key ( sort keys %installer::globals::allcabinets )
857 $installer::logger::Lang->printf("\t%s\n", $key);
860 $installer::logger::Lang->printf("\n");
861 $installer::logger::Lang->printf("List of assignments from modules to cabinet files:\n");
863 foreach $key ( sort keys %installer::globals::allcabinetassigns )
865 $installer::logger::Lang->printf("\t%s : %s\n",
867 $installer::globals::allcabinetassigns{$key});