summaryrefslogtreecommitdiff
path: root/beagle/debian-rfs/usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm
blob: dfca0eb75f9aa88f309da2290d3595dffcedaeb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!


package Debconf::FrontEnd::Noninteractive;
use strict;
use base qw(Debconf::FrontEnd);



sub init { 
        my $this=shift;

        $this->SUPER::init(@_);

        $this->need_tty(0);
}


1