aboutsummaryrefslogtreecommitdiffstats
path: root/hu
Commit message (Expand)AuthorAgeFilesLines
* add mga7 release page and redirection linksfilip2019-06-301-0/+1
* web page for mga6Manuel Hiebel2016-03-261-0/+1
* mga5 release including l10n updatesfilip2015-06-191-1/+0
* prepare mga 5 final preview pages + fix for erased l10n strings on current mg...filip2015-06-171-0/+1
* Integrate new languages (hr, hu & sco)filip2014-12-0121-0/+21
>
summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/printerdrake
blob: 4f05e1ec202e3e8b42115c4f5cf83d58e200f0bb (plain)
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
#!/usr/bin/perl

# printerdrake
# Copyright (C) 1999-2002 MandrakeSoft (fpons@mandrakesoft.com)
# Original version for printer configuration from pad.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

use lib qw(/usr/lib/libDrakX);

use standalone;     #- warning, standalone must be loaded very first, for 'explanations'
use common;
use interactive;
use printer::printerdrake;
use printer::main;
use modules;
use c;

local $_ = join '', @ARGV;

printer::main::get_usermode ();

my $printer;

my $in = 'interactive'->vnew('su', 'printer-mdk');

my $commandline = $_;

exit 0 unless printer::printerdrake::first_time_dialog($printer, $in, 1);

{
# Check whether Foomatic is installed and install it if necessary
printer::printerdrake::install_foomatic($in);

my $w = $in->wait_message(N("Printerdrake"), N("Reading printer data ..."));
# Get what was installed before
eval { $printer = printer::main::getinfo('') };
# Choose the spooler by command line options
$commandline =~ /-cups/ and
    $printer->{SPOOLER} = 'cups' and printer::main::read_configured_queues($printer);
$commandline =~ /-lpr/ and 
    $printer->{SPOOLER} = 'lpd'  and printer::main::read_configured_queues($printer);
$commandline =~ /-lpd/ and 
    $printer->{SPOOLER} = 'lpd'  and printer::main::read_configured_queues($printer);
$commandline =~ /-lprng/ and 
    $printer->{SPOOLER} ='lprng' and printer::main::read_configured_queues($printer);
$commandline =~ /-pdq/ and 
    $printer->{SPOOLER} = 'pdq'  and printer::main::read_configured_queues($printer);
-r '/etc/modules.conf' and modules::mergein_conf('/etc/modules.conf');
}

begin:
$::isEmbedded and kill 'USR2', $::CCPID;

printer::printerdrake::main($printer, $in, 1);

$::isEmbedded ? kill('USR1', $::CCPID) : $in->exit(0);
goto begin;