@@ -46,6 +46,7 @@ BEGIN {
preseed_hook_cmds
di_installcmdline_core
di_vg_name
+ cfg_tftp_di_version
);
%EXPORT_TAGS = ( );
@@ -1358,6 +1359,12 @@ sub preseed_hook_cmds () {
return $preseed;
}
+sub cfg_tftp_di_version ($) {
+ my ($suite) = @_;
+ $suite //= 'x def suite'; # will not find $c{...}
+ return $c{"TftpDiVersion_$suite"} // $c{TftpDiVersion};
+}
+
sub debian_guest_suite ($) {
my ($gho) = @_;
@@ -25,6 +25,15 @@ getconfig () {
'
}
+getconfig_TftpDiVersion_suite () {
+ perl -e '
+ use Osstest;
+ use Osstest::Debian;
+ readglobalconfig();
+ print cfg_tftp_di_version($ARGV[0]) or die $!;
+ ' "$1"
+}
+
getrepos() {
local repos=`getconfig Repos`
if [ -z "$repos" ] ; then
And a shell function to do the same thing. No callers yet. Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com> --- Osstest/Debian.pm | 7 +++++++ cri-getconfig | 9 +++++++++ 2 files changed, 16 insertions(+)