1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
#!/usr/bin/perl
=head1 NAME
debconf-show - query the debconf database
=cut
sub usage {
print STDERR <<EOF;
Usage:
debconf-show packagename [...] [--db=dbname]
debconf-show --listowners [--db=dbname]
debconf-show --listdbs
EOF
exit(1);
}
=head1 SYNOPSIS
debconf-show packagename [...] [--db=dbname]
debconf-show --listowners [--db=dbname]
debconf-show --listdbs
=head1 DESCRIPTION
B<debconf-show> lets you query the debconf database in different ways.
The most common use is "debconf-show packagename", which displays all items
in the debconf database owned by a given package, and their current values.
Questions that have been asked already are prefixed with an '*'.
This can be useful as a debugging aid, and especially handy in bug reports
involving a package's use of debconf.
=head1 OPTIONS
=over 4
=item B<--db=>I<dbname>
Specify the database to query. By default, debconf-show queries the main
database.
=item B<--listowners>
Lists all owners of questions in the database. Generally an owner is
equivalent to a debian package name.
=item B<--listdbs>
Lists all available databases.
=back
=cut
use strict;
use warnings;
use Debconf::Db;
use Debconf::Template;
use Debconf::Question;
use Getopt::Long;
my $db='';
my $listowners=0;
my @packages;
my $listdbs=0;
# command options
GetOptions(
"db=s" => \$db,
"listowners" => \$listowners,
"listdbs" => \$listdbs,
) || usage();
unless ($listowners or $listdbs) {
@packages=@ARGV;
usage() unless @packages;
}
Debconf::Db->load(readonly => 'true');
my %drivers = %Debconf::DbDriver::drivers;
my $conf = Debconf::Config->config;
# Recursive function to get the config tree.
sub tree {
my $node=shift;
my $string=shift || "";
my $driver = Debconf::DbDriver->driver($node);
my $name = $driver->{name};
$string = $string.$name;
print $string."\n";
# If the node is a stack, call tree again to get the subtree.
if ($driver->isa("Debconf::DbDriver::Stack")) {
$string=$string.'/';
map { tree($_->{name},$string) } @{$driver->{stack}};
}
}
# If a specific database is given (with --db), redefine the global config
# database to use it.
if ($db) {
my $driver = $drivers{$db};
die $db.": unknown database" unless defined($driver);
$Debconf::Db::config = $driver;
}
my $qi=Debconf::Question->iterator;
if ($listdbs) {
# Display the config tree.
tree($conf);
}
elsif (@packages) {
while (my $q=$qi->iterate) {
foreach my $package (@packages) {
# Show the questions of a package.
if (grep { $package eq $_} split(/, /, $q->owners)) {
if ($q->flag("seen") eq 'true') {
print "* ";
}
else {
print " ";
}
print $q->name.":";
if ($q->type eq 'password') {
print " (password omitted)";
}
elsif (length $q->value) {
print " ".$q->value;
}
print "\n";
}
}
}
}
elsif ($listowners) {
# Show all the owners in the database.
my %seen;
while (my $q=$qi->iterate) {
foreach (split(/, /, $q->owners)) {
unless ($seen{$_}) {
print "$_\n";
$seen{$_}=1;
}
}
}
}
=head1 AUTHOR
Joey Hess <joeyh@debian.org> and Sylvain Ferriol
=cut
|