Changeset 1958 in ProjectBuilder
- Timestamp:
- Mar 31, 2015, 1:32:50 AM (10 years ago)
- Location:
- devel
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb-modules/Makefile.PL
r1899 r1958 1 # (c) B.Cornec 2007-201 21 # (c) B.Cornec 2007-2015 2 2 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 3 3 # Provided under the GPL v2 -
devel/pb-modules/bin/pbdistrocheck
r1652 r1958 5 5 # $Id$ 6 6 # 7 # Copyright B. Cornec 2007-201 27 # Copyright B. Cornec 2007-2015 8 8 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 9 9 # Provided under the GPL v2 -
devel/pb-modules/bin/pbgetparam
r1898 r1958 5 5 # $Id$ 6 6 # 7 # Copyright B. Cornec 2007-201 37 # Copyright B. Cornec 2007-2015 8 8 # Provided under the GPL v2 9 9 -
devel/pb-modules/lib/ProjectBuilder/Base.pm
r1907 r1958 4 4 # which can be easily used by whatever perl project 5 5 # 6 # Copyright B. Cornec 2007-201 26 # Copyright B. Cornec 2007-2015 7 7 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 8 8 # Provided under the GPL v2 -
devel/pb-modules/lib/ProjectBuilder/Conf.pm
r1907 r1958 5 5 # which can be easily used by wahtever perl project 6 6 # 7 # Copyright B. Cornec 2007-201 27 # Copyright B. Cornec 2007-2015 8 8 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 9 9 # Provided under the GPL v2 -
devel/pb-modules/lib/ProjectBuilder/Display.pm
r1528 r1958 4 4 # which can be easily used by whatever perl project 5 5 # 6 # Copyright B. Cornec 2007-201 26 # Copyright B. Cornec 2007-2015 7 7 # Provided under the GPL v2 8 8 # -
devel/pb-modules/lib/ProjectBuilder/Distribution.pm
r1907 r1958 3 3 # Creates common environment for distributions 4 4 # 5 # Copyright B. Cornec 2007-201 25 # Copyright B. Cornec 2007-2015 6 6 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 7 7 # Provided under the GPL v2 -
devel/pb-modules/lib/ProjectBuilder/Env.pm
r1907 r1958 5 5 # which can be easily used by pbinit scripts 6 6 # 7 # Copyright B. Cornec 2007-201 27 # Copyright B. Cornec 2007-2015 8 8 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 9 9 # Provided under the GPL v2 -
devel/pb-modules/lib/ProjectBuilder/VCS.pm
r1897 r1958 8 8 # $Id$ 9 9 # 10 # Copyright B. Cornec 2007-201 210 # Copyright B. Cornec 2007-2015 11 11 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 12 12 # Provided under the GPL v2 -
devel/pb-modules/lib/ProjectBuilder/VE.pm
r1907 r1958 3 3 # Common functions for virtual environment 4 4 # 5 # Copyright B. Cornec 2007-201 25 # Copyright B. Cornec 2007-2015 6 6 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 7 7 # Provided under the GPL v2 -
devel/pb-modules/lib/ProjectBuilder/Version.pm
r1528 r1958 5 5 # and have been isolated here to avoid unrelated effects 6 6 # 7 # Copyright B. Cornec 2007-201 27 # Copyright B. Cornec 2007-2015 8 8 # Provided under the GPL v2 9 9 # -
devel/pb/bin/pb
r1953 r1958 5 5 # $Id$ 6 6 # 7 # Copyright B. Cornec 2007-201 27 # Copyright B. Cornec 2007-2015 8 8 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 9 9 # Provided under the GPL v2 … … 899 899 pb_build2v("vm","build"); 900 900 } elsif ($action =~ /^launchvm$/) { 901 pb_parallel_launchv(undef,"vm",undef,3 );901 pb_parallel_launchv(undef,"vm",undef,3,$pbimage); 902 902 } elsif ($action =~ /^launchve$/) { 903 pb_parallel_launchv(undef,"ve",undef,3 );903 pb_parallel_launchv(undef,"ve",undef,3,$pbimage); 904 904 } elsif ($action =~ /^script2vm$/) { 905 905 die "action script2vm requires a -s script option" if (not defined $pbscript{'default'}); … … 914 914 pb_newver(); 915 915 } elsif ($action =~ /^newve$/) { 916 pb_parallel_launchv(undef,"ve",undef,0 );916 pb_parallel_launchv(undef,"ve",undef,0,$pbimage); 917 917 } elsif ($action =~ /^newvm$/) { 918 pb_parallel_launchv(undef,"vm",undef,0 );918 pb_parallel_launchv(undef,"vm",undef,0,$pbimage); 919 919 pb_log(0, "Please ensure that sshd is running in your VM by default\n"); 920 920 pb_log(0, "and that it allows remote root login (PermitRootLogin yes in /etc/ssh/sshd_config)\n"); … … 2805 2805 pb_log(2,"DEBUG: pb_script2v($vtype,$pbstep,$pbforce,$snapme)\n"); 2806 2806 pb_log(2,"DEBUG: pb_script2v(pbscript: ".Dumper($pbscript)."\n"); 2807 pb_parallel_launchv($pbscript,$vtype,uc($vtype)."Script",$pbstep,$pb force,$snapme,$pbsnap,$pbimage);2807 pb_parallel_launchv($pbscript,$vtype,uc($vtype)."Script",$pbstep,$pbimage,$pbforce,$snapme,$pbsnap); 2808 2808 } 2809 2809 … … 2814 2814 my $action = shift; # It an action is defined then use send2target 2815 2815 my $pbstep=shift; # Which step are we in (0: create, 1: setup, 2: build 3: use) 2816 my $pbimage=shift; # Which image to use to start the VM/VE 2816 2817 my $pbforce=shift; # Force stop of VM. Default not. 2817 2818 my $snapme = shift; # By default do not snap a VM/VE/RM 2818 2819 my $usesnap = shift; # By default study the usage of the snapshot feature of VM/VE/RM 2819 my $pbimage=shift; # Which image to use to start the VM/VE2820 2820 my $vm; 2821 2821 my $all; … … 3295 3295 # Gather all required files to send them to the VM/VE 3296 3296 # and launch the build through pbscript 3297 pb_parallel_launchv(\%pbscript,$vtype,uc($vtype).$action,$pbstep,$pb force,0,1,$pbimage);3297 pb_parallel_launchv(\%pbscript,$vtype,uc($vtype).$action,$pbstep,$pbimage,$pbforce); 3298 3298 } 3299 3299 … … 3929 3929 # Launch the VM/VE/RM 3930 3930 pb_log(2,"DEBUG: before parallel launch, pbscript hash is:".Dumper(%pbscript)."\n"); 3931 pb_parallel_launchv(\%pbscript,$vtype,uc($vtype)."Script".$sbx,$pbstep,$pb force);3931 pb_parallel_launchv(\%pbscript,$vtype,uc($vtype)."Script".$sbx,$pbstep,$pbimage,$pbforce,0,$pbsnap); 3932 3932 3933 3933 return; -
devel/pb/lib/ProjectBuilder/CMS.pm
r1907 r1958 7 7 # $Id$ 8 8 # 9 # Copyright B. Cornec 2007-201 29 # Copyright B. Cornec 2007-2015 10 10 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 11 11 # Provided under the GPL v2 -
devel/pb/lib/ProjectBuilder/Changelog.pm
r1907 r1958 6 6 # $Id$ 7 7 # 8 # Copyright B. Cornec 2007 8 # Copyright B. Cornec 2007-2015 9 9 # Provided under the GPL v2 10 10 -
devel/pb/lib/ProjectBuilder/Filter.pm
r1756 r1958 7 7 # $Id$ 8 8 # 9 # Copyright B. Cornec 2007-201 29 # Copyright B. Cornec 2007-2015 10 10 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 11 11 # Provided under the GPL v2 -
devel/pbmkbm/bin/pbmkbm
r1900 r1958 5 5 # $Id$ 6 6 # 7 # Copyright B. Cornec 2011 7 # Copyright B. Cornec 2011-2015 8 8 # Provided under the GPL v2 9 9 -
devel/pbtest/bin/pbtest
r1701 r1958 5 5 # $Id$ 6 6 # 7 # Copyright B. Cornec 2007-2012 7 # Copyright B. Cornec 2007-2012-2015 8 8 # Provided under the GPL v2 9 9 -
devel/rpmbootstrap/bin/rpmbootstrap
r1900 r1958 5 5 # $Id$ 6 6 # 7 # Copyright B. Cornec 2010-2012 7 # Copyright B. Cornec 2010-2012-2015 8 8 # Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard 9 9 # Provided under the GPL v2 -
devel/website/downloads.shtml
r1737 r1958 11 11 <h2>This is Free/Libre Software</h2> 12 12 </div> 13 <p>Copyright (c) 2007-201 013 <p>Copyright (c) 2007-2015 14 14 Project-Builder.org is a copyrighted work, written by Bruno Cornec, delivered under the GPLv2.</p> 15 15 <p>
Note:
See TracChangeset
for help on using the changeset viewer.