~ubuntu-branches/debian/sid/debconf/sid

« back to all changes in this revision

Viewing changes to Debconf/Element/Noninteractive/Password.pm

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2004-09-30 19:10:21 UTC
  • Revision ID: james.westby@ubuntu.com-20040930191021-yr64i48ykx4sgn93
Tags: 1.4.29ubuntu4
* Set the seen flag on questions asked in the noninteractive frontend if
  DEBCONF_NONINTERACTIVE_SEEN is set to true. This allows debootstrap to
  behave better.
* Add Debconf::Element::Noninteractive::* modules; we need element objects
  to carry the markseen flag around.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl -w
 
2
 
 
3
=head1 NAME
 
4
 
 
5
Debconf::Element::Noninteractive::Password - dummy password Element
 
6
 
 
7
=cut
 
8
 
 
9
package Debconf::Element::Noninteractive::Password;
 
10
use strict;
 
11
use base qw(Debconf::Element::Noninteractive);
 
12
 
 
13
=head1 DESCRIPTION
 
14
 
 
15
This is a dummy password element.
 
16
 
 
17
=cut
 
18
 
 
19
1