[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST RFC 06/16] Osstest/CentOS.pm: Introduce CentOS support, starting with kickstart_installcmdline_core
This function will be use later to install CentOS on a host. Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> --- Osstest/CentOS.pm | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 Osstest/CentOS.pm diff --git a/Osstest/CentOS.pm b/Osstest/CentOS.pm new file mode 100644 index 0000000..33479b1 --- /dev/null +++ b/Osstest/CentOS.pm @@ -0,0 +1,51 @@ +# This is part of "osstest", an automated testing framework for Xen. +# Copyright (C) 2017 Citrix Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +package Osstest::CentOS; + +use strict; +use warnings; + +use Osstest; +use Osstest::TestSupport; + +BEGIN { + use Exporter (); + our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); + $VERSION = 1.00; + @ISA = qw(Exporter); + @EXPORT = qw( + kickstart_installcmdline_core + ); + %EXPORT_TAGS = ( ); + + @EXPORT_OK = qw(); +} + +sub kickstart_installcmdline_core ($$;@) { + my ($tho, $ks_url, %xopts) = @_; + + my @cl= qw(debug inst.text); + push @cl, "inst.ks=$ks_url"; + + # FIXME: CentOS installer forward syslog only via TCP, osstest listen on UPD. + push @cl, "inst.syslog=$r{syslog_server}" + if ($r{syslog_server}); + + return @cl; +} + +1; -- Anthony PERARD _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |