[Xen-devel] [OSSTEST PATCH] Executive: Abolish use of the `configdb'

2015-09-14 Thread Ian Jackson
This was a database used by networking infrastructure on the
now-obsolete XenClient network in the Citrix Cambridge office (which
used some management tools developed by Mythic Beasts).

The production database in Cambridge no longer has the configdb, and
both instances have `HostDB_Executive_NoConfigDB 1' in the
configuration.  We think it very unlikely that anyone has as similar
arrangement.

Remove all the code for accessing this database.  We leave the config
settings `NoConfigDB' for now, for the benefit of ad-hoc trees which
are not immediately updated but which use their site's official
production-config.  They can be deleted later.

Signed-off-by: Ian Jackson 
---
 Osstest/HostDB/Executive.pm |   30 ++
 1 file changed, 2 insertions(+), 28 deletions(-)

diff --git a/Osstest/HostDB/Executive.pm b/Osstest/HostDB/Executive.pm
index 3fa9982..3e5eca2 100644
--- a/Osstest/HostDB/Executive.pm
+++ b/Osstest/HostDB/Executive.pm
@@ -98,34 +98,8 @@ END
 sub default_methods ($$) {
 my ($hd, $ho) = @_;
 
-return if $ho->{Flags}{'no-reinstall'};
-return if $ho->{Ether} && $ho->{Power};
-
-return if $c{HostDB_Executive_NoConfigDB};
-
-my $dbh_config= opendb('configdb');
-my $selname= $ho->{Fqdn};
-my $sth= $dbh_config->prepare(<execute($selname);
-my $row= $sth->fetchrow_hashref();
-my $name= $ho->{Name};
-die "$ho->{Ident} $name $selname ?" unless $row;
-die if $sth->fetchrow_hashref();
-$sth->finish();
-my $get= sub {
-   my ($k,$nowarn) = @_;
-   my $v= $row->{$k};
-   defined $v or $nowarn or
-   warn "host $name: undefined $k in configdb::ips\n";
-   return $v;
-};
-$ho->{Asset}= $get->('asset',1);
-$ho->{Ether} ||= $get->('hardware');
-$ho->{Power} ||= "statedb $ho->{Asset}";
-push @{ $ho->{Info} }, "(asset=$ho->{Asset})" if defined $ho->{Asset};
-$dbh_config->disconnect();
+# We used to look things up in the Mythic Beasts style configdb
+# here.  But that is gone now.
 }
 
 1;
-- 
1.7.10.4


___
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel


Re: [Xen-devel] [OSSTEST PATCH] Executive: Abolish use of the `configdb'

2015-09-14 Thread Ian Campbell
On Mon, 2015-09-14 at 11:59 +0100, Ian Jackson wrote:
> This was a database used by networking infrastructure on the
> now-obsolete XenClient network in the Citrix Cambridge office (which
> used some management tools developed by Mythic Beasts).
> 
> The production database in Cambridge no longer has the configdb, and
> both instances have `HostDB_Executive_NoConfigDB 1' in the
> configuration.  We think it very unlikely that anyone has as similar
> arrangement.
> 
> Remove all the code for accessing this database.  We leave the config
> settings `NoConfigDB' for now, for the benefit of ad-hoc trees which
> are not immediately updated but which use their site's official
> production-config.  They can be deleted later.
> 
> Signed-off-by: Ian Jackson 

Acked-by: Ian Campbell 


___
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel