summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakpxe
blob: 2c0486dab6ae1cd420538f8df333803382786efb (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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
#!/usr/bin/perl
#
# Fran,cois Pons <fpons@mandrakesoft.com>
#
# Copyright 2003-2005 Mandriva
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2, as
# published by the Free Software Foundation.
#
# 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 strict;
use lib qw(/usr/lib/libDrakX);

use standalone;     #- warning, standalone must be loaded very first, for 'explanations'

use common;
use interactive;
use network::network;
use log;
use c;

$::isInstall and die "Not supported during install.\n";

$::Wizard_pix_up = "drakgw.png"; #- to change ? keep existing one, nobody will see (too late) ;-)
my $direct = grep { /-direct/ } @ARGV;


#
#my $sysconf_network = "/etc/sysconfig/network";
#my $sysconf_dhcpd = "/etc/sysconfig/dhcpd";
#my $rc_firewall_generic = "/etc/rc.d/rc.firewall";
#my $rc_firewall_drakgw = "/etc/rc.d/rc.firewall.inet_sharing";
#my $rc_firewall_24 = "/etc/rc.d/rc.firewall.inet_sharing-2.4";
#my $masq_file = "/etc/shorewall/masq";
#my $cups_conf = "/etc/cups/cupsd.conf";
#
#my $shorewall = network::shorewall::read();
#
#- get network configuration.
my $net = {};
network::network::read_net_conf($net);

my $in = 'interactive'->vnew('su');
$::Wizard_title = N("PXE Server Configuration");

!$::isEmbedded && $in->isa('interactive::gtk') and $::isWizard = 1;

#pur_gtk_mode() if $::isEmbedded && $in->isa('interactive::gtk');

sub sys { system(@_) == 0 or log::l("[drakpxe] Warning, sys failed for $_[0]") }

sub start_daemons () {
    log::explanations("Starting daemons");

    system("/etc/rc.d/init.d/dhcpd status >/dev/null") == 0 and sys("/etc/rc.d/init.d/dhcpd stop");

    sys("/etc/rc.d/init.d/$_ start >/dev/null"), sys("/sbin/chkconfig --level 345 $_ on") foreach 'httpd', 'dhcpd';
}

sub stop_daemons () {
    log::explanations("Stopping daemons");
    foreach (qw(dhcpd httpd)) {
	system("/etc/rc.d/init.d/$_ status >/dev/null 2>/dev/null") == 0 and sys("/etc/rc.d/init.d/$_ stop");
    }
    sys("/sbin/chkconfig --level 345 $_ off") foreach 'dhcpd', 'httpd';
}

my $wait_configuring;

sub quit_global {
    my ($in, $exitcode) = @_;
    $in->exit($exitcode);
    goto begin
}

sub fatal_quit ($) {
    log::l("[drakpxe] FATAL: $_[0]");
    undef $wait_configuring;
    $in->ask_warn('', $_[0]);
    quit_global($in, -1);
}

#my ($kernel_version) = c::kernel_version() =~ /(...)/;
#log::l("[drakgw] kernel_version $kernel_version");
#
#$kernel_version >= 2.4 or fatal_quit(N("Sorry, we support only 2.4 kernels."));

begin:

#- **********************************
#- * 0th step: verify if we have multiple network interface.

$::Wizard_no_previous = 1;
    
$direct or $in->ask_okcancel(N("Installation Server Configuration"),
N("You are about to configure your computer to install a PXE server as a DHCP server
and a TFTP server to build an installation server.
With that feature, other computers on your local network will be installable using this computer as source.

Make sure you have configured your Network/Internet access using drakconnect before going any further.

Note: you need a dedicated Network Adapter to set up a Local Area Network (LAN)."), 1) or quit_global($in, 0);

undef $::Wizard_no_previous;


#- **********************************
#- * 1st step: verify if we have multiple network interface.

step_check_intf:

my @intf = grep { exists $_->{NETWORK} } map {
    unless ($_->{NETWORK}) {
	foreach my $s (split "\n", `route`) {
	    print STDERR "$s\n";
	    $s =~ /^(\S+)\s+\S+\s+$_->{NETMASK}\s+.*$_->{DEVICE}/ and $_->{NETWORK} = $1;
	}
    } $_ } values %{$net->{ifcfg}};
if (@intf < 1) {
    #- no interface already configured found, ask user to configure.
    $in->ask_warn(N("No network adapter on your system!"), 
		  N("No ethernet network adapter has been detected on your system. Please run the hardware configuration tool."));
    quit_global($in, 0);
} elsif (@intf > 1) {
    #- there are more than one interface, we need to choose one of them.
    @intf = $in->ask_from_listf(N("Choose the network interface"),
				 N("Please choose which network interface will be used for the dhcp server."),	
				 sub { N("Interface %s (on network %s)", $_[0]{DEVICE}, $_[0]{NETWORK}) },
				 \@intf,
				) or goto begin;
}


#- **********************************
#- * 3rd step: select installation directory to be used (if not present, next step
#-             will be creation and copy from existing one).

step_ip_range:

#- read current configuration, or create a default suitable automatically.
my $dhcpd_conf = parse_dhcpd_conf("/etc/dhcpd.conf", {}, $net, $intf[0]);

#- get back default of ip.
my $pool;
foreach (@{$dhcpd_conf->{network}{pool}}) {
    exists $_->{allow}{$dhcpd_conf->{class_PXE}} and $pool = $_, last;
}
my ($start_ip, $end_ip) = @{$pool || { start_ip => join('.', (split '\.', $intf[0]{NETWORK})[0..2], 16),
				       end_ip   => join('.', (split '\.', $intf[0]{NETWORK})[0..2], 253) }}{qw(start_ip end_ip)};

#- it become too complicated to handle address range, so ask user directly.
$in->ask_from('DHCP Server Configuration',
	      N("The DHCP server will allow other computer to boot using PXE in the given range of address.

The network address is %s using a netmask of %s.

", $intf[0]{NETWORK}, $intf[0]{NETMASK}), [ { label => N("The DHCP start ip"), val => \$start_ip, type => 'entry' },
					{ label => N("The DHCP end ip"), val => \$end_ip, type => 'entry' }, ])
  or goto begin;


#- **********************************
#- * 3rd step: select installation directory to be used (if not present, next step
#-             will be creation and copy from existing one).

step_install_dir:

my $dir = "/export"; #- TODO change according configuration?
    
$in->ask_from('Choose the installation image directory',
	      N("Please indicate where the installation image will be available.

If you do not have an existing directory, please copy the CD or DVD contents.

"),
      [ { label => N("Installation image directory"), val => \$dir, type => 'entry' }, ])
  or goto step_ip_range;

unless (-d $dir && -e "$dir/VERSION" && -d "$dir/install/isolinux" && -d "$dir/install/stage2") {
    $in->ask_warn(N("No image found"), 
		  N("No CD or DVD image found, please copy the installation program and rpm files."));
    goto step_install_dir;
}

#- **********************************
#- * 4st step: ask user for auto installation file.

step_auto_install:

my $auto_inst_cfg = "install/auto_inst.cfg"; #- TODO change according configuration?
-e "$dir/$auto_inst_cfg" or $auto_inst_cfg = '';

$in->ask_from('Choose auto installation',
	      N("Please indicate where the auto_install.cfg file is located.

Leave it blank if you do not want to set up automatic installation mode.

"),
      [ { label => N("Location of auto_install.cfg file"), val => \$auto_inst_cfg, type => 'entry' }, ])
  or goto step_install_dir;

#- now install packages...
my %rpm2file = ('dhcp-server' => '/usr/sbin/dhcpd',
		'pxe' => '/usr/sbin/pxe',
		'tftp-server' => '/usr/sbin/in.tftpd',
		if_(! -x '/usr/sbin/httpd' && ! -x '/usr/sbin/httpd-perl', 'apache2' => '/usr/sbin/httpd2'));

#- first: try to install all in one step
my @needed_to_install = grep { !-e $rpm2file{$_} } keys %rpm2file;
@needed_to_install and $in->do_pkgs->install(@needed_to_install);
#- second: try one by one if failure detected
if (any { !-e $rpm2file{$_} } keys %rpm2file) {
    foreach (keys %rpm2file) {
	-e $rpm2file{$_} or $in->do_pkgs->install($_);
	-e $rpm2file{$_} or fatal_quit(N("Problems installing package %s", $_));
    }
}

#- check if a pool already exist allowing PXE, else create one wich will be correct.
if ($pool) {
    @$pool{qw(start_ip end_ip)} = ($start_ip, $end_ip);
} else {
    $pool = { start_ip => $start_ip, end_ip => $end_ip };
    foreach (keys %{$dhcpd_conf->{class}}) {
	$pool->{$_ eq $dhcpd_conf->{class_PXE} || $_ eq 'Etherboot' ? 'allow' : 'deny'}{$_} = undef;
    }
    push @{$dhcpd_conf->{network}{pool}}, $pool;
}
build_dhcpd_conf($dhcpd_conf, "/etc/dhcpd.conf");

#- make kernel and initrd available for initrd.
mkdir "/var/lib/tftpboot/PXEClient/images";
sys("cp", "-af", "$dir/install/isolinux/alt0", "/var/lib/tftpboot/PXEClient/images/");

my $pxelinux_cfg = parse_pxelinux_cfg("/var/lib/tftpboot/PXEClient/pxelinux.cfg/default");
my $label;
foreach my $i (0..99) {
    $label = undef;
    foreach my $e (@{$pxelinux_cfg->{entry}}) {
	$e->{label} eq "halt$i" and $label = "halt$i", last;
    }
    defined $label or $label = "halt$i", last;
}
my $server = $intf[0]{IPADDR} || $net->{network}{HOSTNAME};
push @{$pxelinux_cfg->{entry}}, { label => $label, 
				  kernel => "images/alt0/vmlinuz",
				  append => "initrd=images/alt0/all.rdz vga=788 " . ($auto_inst_cfg ? "kickstart=$auto_inst_cfg " : "") . "automatic=met:http,netw:dhcp,int:eth0,dns:$net->{resolv}{dnsServer},ser:$server,dir:$dir" };
build_pxelinux_cfg($pxelinux_cfg, "/var/lib/tftpboot/PXEClient/pxelinux.cfg/default");

#- make directory available for httpd.
log::explanations("Linking $dir in /var/www/html to make it available");
system "mkdir", "-p", "/var/www/html/$dir";
rmdir "/var/www/html/$dir";
symlink $dir, "/var/www/html/$dir";

stop_daemons();
start_daemons();

#- sub for reading/writing dhcpd.conf and pxelinux.cfg/default...
sub parse_dhcpd_conf {
    my ($file, undef, $net, $intf) = @_;
    my (%dhcpd_conf, $pool);
    local (*F, $_);

    #- fake reading configuration from dhcpd.conf file which is really too complex for this tools.
    $dhcpd_conf{class_PXE} = 'PXE';
    $dhcpd_conf{class} = { PXE => undef, Etherboot => undef, known => undef };
    add2hash($dhcpd_conf{network} = { pool => [] }, $intf);
    add2hash($dhcpd_conf{network}, $net->{network});
    add2hash($dhcpd_conf{network}, $net->{resolv});

    if (open F, $file) {
	while (<F>) {
	    if (/^\s*pool\s*{/ .. /}/) {
		/^\s*range\s+(\S+)\s+(\S+)\s*;/ and ($pool->{start_ip}, $pool->{end_ip}) = ($1, $2);
		/^\s*(allow|deny)\s+members\s+of\s+"([^"]*)"\s*;/ and $pool->{$1}{$2} = undef;
		/}/ and do { push @{$dhcpd_conf{network}{pool}}, $pool; $pool = undef };
	    }
	}
	close F;
    }

    \%dhcpd_conf;
}

sub build_dhcpd_conf {
    my ($dhcpd_conf, $file) = @_;
    local *F;
    my $server = $dhcpd_conf->{network}{IPADDR} || $dhcpd_conf->{network}{HOSTNAME};
    open F, ">$file" or return;
    log::explanations("Modified file $file");
    print F qq(# for explanation in french go to : http://www.delafond.org/traducmanfr/man/man5/dhcpd.conf.5.html
ddns-update-style none;
allow booting;
allow bootp;

# Your dhcp server is not master on your network !
#not authoritative;
# Your dhcpd server is master on your network !
#authoritative;
not authoritative;

#Interface where dhcpd is active
DHCPD_INTERFACE = "$dhcpd_conf->{network}{DEVICE}";

# Definition of PXE-specific options
# Code 1: Multicast IP address of bootfile
# Code 2: UDP port that client should monitor for MTFTP responses
# Code 3: UDP port that MTFTP servers are using to listen for MTFTP requests
# Code 4: Number of secondes a client must listen for activity before trying
#         to start a new MTFTP transfer
# Code 5: Number of secondes a client must listen before trying to restart
#         a MTFTP transfer

# define Option for the PXE class
option space PXE;
option PXE.mtftp-ip code 1 = ip-address;
option PXE.mtftp-cport code 2 = unsigned integer 16;
option PXE.mtftp-sport code 3 = unsigned integer 16;
option PXE.mtftp-tmout code 4 = unsigned integer 8;
option PXE.mtftp-delay code 5 = unsigned integer 8;
option PXE.discovery-control code 6 = unsigned integer 8;
option PXE.discovery-mcast-addr code 7 = ip-address;

#Define options for pxelinux
option space pxelinux;
option pxelinux.magic      code 208 = string;
option pxelinux.configfile code 209 = text;
option pxelinux.pathprefix code 210 = text;
option pxelinux.reboottime code 211 = unsigned integer 32;
site-option-space "pxelinux";
# These lines should be customized to your setup
#option pxelinux.configfile "configs/common";
#option pxelinux.pathprefix "/pxelinux/files/";
#filename "/pxelinux/pxelinux.bin";
				
option pxelinux.magic f1:00:74:7e;
option pxelinux.reboottime 30;
#if exists dhcp-parameter-request-list {
	# Always send the PXELINUX options
#	append dhcp-parameter-request-list 208, 209, 210, 211;
#	append dhcp-parameter-request-list 208,211;
#					}

#Class that determine the options for Etherboot 5.x requests
class "Etherboot" {

#if The vendor-class-identifier equal Etherboot-5.0
match if substring (option vendor-class-identifier, 0, 9) = "Etherboot";

# filename define the file retrieve by the client, there nbgrub
# our TFTP is chrooted so is just the path to the file
filename "/etherboot/nbgrub";

#Used by etherboot to detect a valid pxe dhcp server
option vendor-encapsulated-options 3c:09:45:74:68:65:72:62:6f:6f:74:ff;

# Set the  "vendor-class-identifier" field to "PXEClient" in dhcp answer        
# if this field is not set the pxe client will ignore the answer !
option vendor-class-identifier "Etherboot";

vendor-option-space PXE;
option PXE.mtftp-ip 0.0.0.0;

# IP of you TFTP server
next-server $server;
}


# create the Class PXE
class "PXE" {
# if the "vendor-class-identifier" is set to "PXEClient" in the client dhcp request
match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
  
# filename define the file retrieve by the client, there pxelinux.0
# our TFTP is chrooted so is just the path to the file
# If you prefer use grub, use pxegrub compiled for your ethernet card.
#filename "/PXEClient/pxegrub";
filename "/PXEClient/pxelinux.0";

# Set the  "vendor-class-identifier" field to "PXEClient" in dhcp answer
# if this field is not set the pxe client will ignore the answer !
option vendor-class-identifier "PXEClient";

				  
vendor-option-space PXE;
option PXE.mtftp-ip 0.0.0.0;

# IP of you TFTP server
next-server $server;
}

# the class know exist just for deny the response to other DHCP request
class "known" {
  match hardware;
  one-lease-per-client on;
  ddns-updates on;
  ddns-domainname = "$dhcpd_conf->{network}{DOMAINNAME}";
  option domain-name "$dhcpd_conf->{network}{DOMAINNAME}";
  option domain-name-servers $dhcpd_conf->{network}{dnsServer};
  ddns-hostname = pick-first-value(ddns-hostname, option host-name);
  option fqdn.no-client-update on;
  set vendor_class_identifier = option vendor-class-identifier;
}

# Tags uses by setup_node_mac_to_dhcp
# TAG: NODE_LIST_BEGIN

# TAG: NODE_LIST_END
shared-network "mynetwork" {
  subnet $dhcpd_conf->{network}{NETWORK} netmask $dhcpd_conf->{network}{NETMASK} {
  option subnet-mask $dhcpd_conf->{network}{NETMASK};
  option routers $dhcpd_conf->{network}{GATEWAY};
  default-lease-time 28800;
  max-lease-time 86400;
  option domain-name "$dhcpd_conf->{network}{DOMAINNAME}";
  option domain-name-servers $dhcpd_conf->{network}{dnsServer};
# Used by clusterautosetup-client to find its server
  next-server $server;

);
    foreach (@{$dhcpd_conf->{network}{pool}}) {
	print F "    pool {
       range $_->{start_ip} $_->{end_ip};
";
	print F qq(       allow members of "$_";\n) foreach keys %{$_->{allow}};
	print F qq(       deny members of $_";\n) foreach keys %{$_->{deny}};
	print F "    }\n";
    }
print F qq(

#   pool {
#     range 192.168.200.200 192.168.200.254;
# give an address of the the pool for PXE client and deny the other
#allow members of "PXE";
#deny members of "known";
#allow members of "Etherboot";
#        }
  }
}
);
    close F;
}

sub parse_pxelinux_cfg {
    my ($file) = @_;
    my (%pxelinux_cfg, $entry);
    local (*F, $_);

    if (open F, $file) {
	while (<F>) {
	    chomp;
	    s/#.*//; next if /^\s*$/;
	    if (/^\s*(PROMPT|DEFAULT|DISPLAY|TIMEOUT)\s+(.*)/i) {
		$pxelinux_cfg{$1} = $2;
	    } elsif (/^\s*label\s+(.*)/i) {
		$entry and push @{$pxelinux_cfg{entry}}, $entry;
		$entry = { label => $1 },
	    } elsif (/^\s*(LOCALBOOT|KERNEL|APPEND)\s+(.*)/i) {
		$entry->{$1} = $2;
	    } else {
		log::l("ignoring line in file $file due to parsing error");
	    }
	}
	$entry and push @{$pxelinux_cfg{entry}}, $entry;
	close F;
    }
    #- try to fix bad file (first version of drakpxe for example).
    my %default_pxelinux_cfg = (PROMPT => 1,
				 DEFAULT => "local",
				 DISPLAY => "messages",
				 TIMEOUT => 50,
				 entry => [ { label => "local",
					      LOCALBOOT => 0 } ],
			       );
    foreach (qw(PROMPT DEFAULT DISPLAY TIMEOUT entry)) {
	length $pxelinux_cfg{$_} > 0 or $pxelinux_cfg{$_} = $default_pxelinux_cfg{$_};
    }
    \%pxelinux_cfg;
}

sub build_pxelinux_cfg {
    my ($pxelinux_cfg, $file) = @_;
    local *F;
    open F, ">$file" or return;
    log::explanations("Modified file $file");
    foreach (keys %$pxelinux_cfg) {
	/^entry$/ and next;
	print F "$_ $pxelinux_cfg->{$_}\n";
    }
    foreach my $e (@{$pxelinux_cfg->{entry}}) {
	print F "label $e->{label}\n";
	foreach (keys %$e) {
	    /^label$/ and next;
	    print F "      $_ $e->{$_}\n";
	}
    }
    close F;
}

168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577
# translation of de.po to 
# translation of de.po to German
# translation of initscripts.po to Deutsch
# translation of de.po to
# translation of initscripts.po to
# translation of de.po to Deutsch
# Bernd Groh <bgroh@redhat.com>, 2003,2004.
# Andreas Müller <redhat@andreas-mueller.com>, 2003, 2004.
# Verena <vfuehrer@redhat.com>, 2004.
# Ronny Buchmann <ronny-vlug@vlugnet.org> 2004
msgid ""
msgstr ""
"Project-Id-Version: de\n"
"PO-Revision-Date: 2004-10-17 12:30+0200\n"
"Last-Translator: Ronny Buchmann <ronny-vlug@vlugnet.org>\n"
"Language-Team:  <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1389
msgid "No parameters given to setup a default route"
msgstr "Keine Parameter vorhanden, um eine Standard-Route zu erstellen"

#: /etc/rc.d/init.d/dhcpd:110
msgid "Usage: $0 {start|stop|restart|condrestart|configtest|status}"
msgstr "Verwendung: $0 {start|stop|restart|condrestart|configtest|status}"

#: /etc/rc.d/init.d/ups:52
msgid "Starting UPS monitor (slave): "
msgstr "UPS-Monitor (Slave) starten: "

#: /etc/rc.d/init.d/crond:66
msgid "Reloading cron daemon configuration: "
msgstr "cron-Daemon Konfiguration neu laden: "

#: /etc/sysconfig/network-scripts/ifup-ipv6:227
msgid ""
"Warning: configured MTU '$IPV6TO4_MTU' for 6to4 exceeds maximum limit of "
"'$tunnelmtu', ignored"
msgstr ""
"Achtung: die konfigurierte MTU '$IPV6TO4_MTU' für 6to4 überschreitet die "
"maximale Grenze für '$tunnelmtu', ignoriert"

#: /etc/rc.d/init.d/ypxfrd:31
msgid "Stopping YP map server: "
msgstr "YP map-Server stoppen: "

#: /etc/sysconfig/network-scripts/ifup:84
msgid "Could not set 802.1Q VLAN parameters."
msgstr "Konnte 802.1Q VLAN-Parameter nicht einstellen."

#: /etc/sysconfig/network-scripts/ifup:94
#: /etc/sysconfig/network-scripts/ifup-eth:83
msgid ""
"$alias device ${DEVICE} does not seem to be present, delaying initialization."
msgstr "$alias Gerät ${DEVICE} scheint zu fehlen, Initialisierung verzögert."

#: /etc/rc.d/init.d/amd:96 /etc/rc.d/init.d/autofs:559
#: /etc/rc.d/init.d/bgpd:59 /etc/rc.d/init.d/gkrellmd:54
#: /etc/rc.d/init.d/irda:72 /etc/rc.d/init.d/ospfd:60 /etc/rc.d/init.d/ripd:59
#: /etc/rc.d/init.d/ripngd:59 /etc/rc.d/init.d/sshd:168
#: /etc/rc.d/init.d/zebra:60
msgid "Usage: $0 {start|stop|restart|reload|condrestart|status}"
msgstr "Verwendung: $0 {start|stop|restart|reload|condrestart|status}"

#: /etc/rc.d/init.d/autofs:546
msgid "Start $x"
msgstr "$x starten"

#: /etc/rc.d/init.d/gpm:22
msgid "Starting console mouse services: "
msgstr "Mausdienste der Konsole starten: "

#: /etc/rc.d/init.d/rdisc:42
#, fuzzy
msgid "Shutting down router discovery services: "
msgstr "mDNSResponder-Dienste herunterfahren: "

#: /etc/rc.d/init.d/rhnsd:38
msgid "Starting Red Hat Network Daemon: "
msgstr "Red Hat Network Daemon starten: "

#: /etc/rc.d/init.d/dictd:28
msgid "no dictionaries installed"
msgstr ""

#: /etc/rc.d/init.d/ups:72
msgid "Shutting down $MODEL: "
msgstr "$MODEL herunterfahren: "

#: /etc/sysconfig/network-scripts/ifup-ppp:142
msgid "pppd started for ${DEVNAME} on ${MODEMPORT} at ${LINESPEED}"
msgstr "pppd gestartet für ${DEVNAME} an ${MODEMPORT} mit ${LINESPEED}"

#: /etc/rc.d/init.d/ypbind:70
msgid "Shutting down NIS services: "
msgstr "NIS-Dienste herunterfahren: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:313
#: /etc/sysconfig/network-scripts/network-functions-ipv6:368
msgid "Missing parameter 'IPv6-gateway' (arg 2)"
msgstr "Parameter 'IPv6-gateway' fehlt (arg 2)"

#: /etc/rc.d/init.d/netfs:114
msgid "Unmounting CIFS filesystems: "
msgstr "CIFS-Dateisysteme aushängen: "

#: /etc/rc.d/init.d/functions:235
msgid "Usage: pidfileofproc {program}"
msgstr "Verwendung: pidfileofproc {Programm}"

#: /etc/rc.d/init.d/vncserver:43
msgid "vncserver start"
msgstr "VNC-Server starten"

#: /etc/rc.d/init.d/gdm-early-login:29
#, fuzzy
msgid "Shutting down display manager: "
msgstr "pand herunterfahren: "

#: /etc/rc.d/init.d/crond:93 /etc/rc.d/init.d/krb5kdc:80
#: /etc/rc.d/init.d/saslauthd:75 /etc/rc.d/init.d/squid:160
msgid "Usage: $0 {start|stop|status|reload|restart|condrestart}"
msgstr "Verwendung: $0 {start|stop|status|reload|restart|condrestart}"

#: /etc/rc.d/init.d/rpcsvcgssd:44
#, fuzzy
msgid "Starting RPC svcgssd: "
msgstr "NFS4 svcgssd starten: "

#: /etc/rc.d/init.d/amd:30 /etc/rc.d/init.d/anacron:15
#: /etc/rc.d/init.d/arpwatch:28 /etc/rc.d/init.d/atd:29
#: /etc/rc.d/init.d/auditd:42 /etc/rc.d/init.d/autofs:472
#: /etc/rc.d/init.d/bgpd:29 /etc/rc.d/init.d/bootparamd:29
#: /etc/rc.d/init.d/canna:28 /etc/rc.d/init.d/cpuspeed:29
#: /etc/rc.d/init.d/crond:25 /etc/rc.d/init.d/cups:57
#: /etc/rc.d/init.d/dc_client:33 /etc/rc.d/init.d/dc_server:29
#: /etc/rc.d/init.d/dhcp6r:32 /etc/rc.d/init.d/dhcp6s:36
#: /etc/rc.d/init.d/dhcpd:44 /etc/rc.d/init.d/dhcrelay:33
#: /etc/rc.d/init.d/dictd:23 /etc/rc.d/init.d/dovecot:19
#: /etc/rc.d/init.d/gkrellmd:24 /etc/rc.d/init.d/httpd:60
#: /etc/rc.d/init.d/ipsec:144 /etc/rc.d/init.d/irda:23
#: /etc/rc.d/init.d/irqbalance:46 /etc/rc.d/init.d/kadmin:44
#: /etc/rc.d/init.d/kprop:30 /etc/rc.d/init.d/krb524:34
#: /etc/rc.d/init.d/krb5kdc:34 /etc/rc.d/init.d/ldap:121
#: /etc/rc.d/init.d/ldap:133 /etc/rc.d/init.d/lisa:35
#: /etc/rc.d/init.d/lm_sensors:57 /etc/rc.d/init.d/mailman:77
#: /etc/rc.d/init.d/mdmonitor:37 /etc/rc.d/init.d/mdmpd:38
#: /etc/rc.d/init.d/mysqld:88 /etc/rc.d/init.d/mysqld:90
#: /etc/rc.d/init.d/mysqld:93 /etc/rc.d/init.d/named:36
#: /etc/rc.d/init.d/nscd:49 /etc/rc.d/init.d/ntpd:97
#: /etc/rc.d/init.d/ospf6d:29 /etc/rc.d/init.d/ospfd:30
#: /etc/rc.d/init.d/portmap:47 /etc/rc.d/init.d/radvd:38
#: /etc/rc.d/init.d/rarpd:22 /etc/rc.d/init.d/ripd:29
#: /etc/rc.d/init.d/ripngd:29 /etc/rc.d/init.d/rwalld:24
#: /etc/rc.d/init.d/saslauthd:36 /etc/rc.d/init.d/sendmail:40
#: /etc/rc.d/init.d/smartd:44 /etc/rc.d/init.d/snmpd:20
#: /etc/rc.d/init.d/snmptrapd:23 /etc/rc.d/init.d/squid:60
#: /etc/rc.d/init.d/sshd:106 /etc/rc.d/init.d/ups:43
#: /etc/rc.d/init.d/vncserver:23 /etc/rc.d/init.d/xfs:63
#: /etc/rc.d/init.d/xinetd:44 /etc/rc.d/init.d/zebra:27
msgid "Starting $prog: "
msgstr "$prog starten: "

#: /etc/sysconfig/network-scripts/ifup-sit:64
msgid "Missing remote IPv4 address of tunnel, configuration is not valid"
msgstr "Ferne IPv4 Adresse des Tunnels fehlt, Konfiguration ist ungültig"

#: /etc/rc.d/init.d/mDNSResponder:36
msgid "Shutting down mDNSResponder services: "
msgstr "mDNSResponder-Dienste herunterfahren: "

#: /etc/sysconfig/network-scripts/ifdown-eth:44
#: /etc/sysconfig/network-scripts/ifup-eth:45
msgid "Device ${DEVICE} has different MAC address than expected, ignoring."
msgstr "Gerät ${DEVICE} hat andere MAC-Adresse als erwartet, ignorieren."

#: /etc/rc.d/init.d/diskdump:139
msgid "$dev is not a dump device"
msgstr "$dev ist kein Dump-Gerät"

#: /etc/rc.d/init.d/messagebus:34
msgid "Stopping system message bus: "
msgstr "System-Message-Bus stoppen: "

#: /etc/rc.d/init.d/privoxy:268
msgid "Usage: $PRIVOXY_PRG {start|stop|reload|restart|condrestart|status|top}"
msgstr ""
"Verwendung: $PRIVOXY_PRG {start|stop|reload|restart|condrestart|status|top}"

#: /etc/rc.d/init.d/yum:29
msgid "Disabling nightly yum update: "
msgstr "Deaktiviere nächtliches yum-Update: "

#: /etc/rc.d/init.d/arptables_jf:171 /etc/rc.d/init.d/ip6tables:315
#: /etc/rc.d/init.d/iptables:315
msgid "Usage: $0 {start|stop|restart|condrestart|status|panic|save}"
msgstr "Verwendung: $0 {start|stop|restart|condrestart|status|panic|save}"

#: /etc/rc.d/init.d/autofs:327
msgid ""
"Active Mount Points:\n"
"--------------------"
msgstr ""
"Aktive Einhängepunkte:\n"
"----------------------"

#: /etc/rc.d/init.d/firstboot:47
msgid "X is not configured.  Running system-config-display"
msgstr "X ist nicht konfiguriert. system-config-display wird ausgeführt"

#: /etc/rc.d/init.d/ups:34
msgid "Starting $MODEL: "
msgstr "$MODEL starten: "

#: /etc/sysconfig/network-scripts/ifup-eth:99
msgid "Enslaving ${DEVICE} to ${MASTER}"
msgstr "Erzeuge Slave ${DEVICE} für ${MASTER}"

#: /etc/rc.d/init.d/yum:60
msgid "Nightly yum update is disabled."
msgstr "Nächtliches yum-Update ist deaktiviert."

#: /etc/rc.d/init.d/rwhod:32
msgid "Stopping rwho services: "
msgstr "rwho-Dienste stoppen: "

#: /etc/rc.d/init.d/atalk:53
msgid "Shutting down AppleTalk services: "
msgstr "Apple Talk Dienste herunterfahren: "

#: /etc/rc.d/rc:91
msgid "Starting $subsys: "
msgstr "$subsys starten: "

#: /etc/rc.d/init.d/arptables_jf:49
msgid "Flushing all current rules and user defined chains:"
msgstr "Alle aktuellen Regeln und benutzerdefinierten Ketten löschen:"

#: /etc/rc.d/init.d/crond:28
#, fuzzy
msgid "cannot start crond: crond is already running."
msgstr "cardmgr wird bereits ausgeführt."

#: /etc/rc.d/init.d/isicom:27
msgid "Failed to load firmware."
msgstr "Laden der Firmware fehlgeschlagen."

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1326
msgid "Given IPv6 default gateway '$address' is not in proper format"
msgstr "Angegebenes IPv6-Standard-Gateway '$address' hat ein ungültiges Format"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1449
msgid "Unsupported reason '$reason' for sending trigger to radvd"
msgstr "Nicht unterstützter Grund '$reason' zum Senden von trigger zu radvd"

#: /etc/rc.d/rc.sysinit:99
msgid "\t\tWelcome to "
msgstr "\t\tWillkommen bei"

#: /etc/rc.d/init.d/rstatd:31
msgid "Stopping rstat services: "
msgstr "rstat-Dienste stoppen: "

#: /etc/rc.d/init.d/cups-config-daemon:67 /etc/rc.d/init.d/haldaemon:71
#: /etc/rc.d/init.d/innd:112 /etc/rc.d/init.d/kprop:67
#: /etc/rc.d/init.d/krb524:70 /etc/rc.d/init.d/lm_sensors:133
#: /etc/rc.d/init.d/mDNSResponder:69 /etc/rc.d/init.d/NetworkManager:76
#: /etc/rc.d/init.d/nifd:70 /etc/rc.d/init.d/syslog:80
#: /etc/rc.d/init.d/ypbind:109
msgid "Usage: $0 {start|stop|status|restart|condrestart}"
msgstr "Verwendung: $0 {start|stop|status|restart|condrestart}"

#: /etc/rc.d/init.d/halt:43
msgid "$0: call me as 'halt' or 'reboot' please!"
msgstr "$0: bitte als 'halt' oder 'reboot' aufrufen!"

#: /etc/rc.d/init.d/isdn:252
msgid "$NAME is attached to $DEVICE"
msgstr "$NAME ist verbunden mit $DEVICE"

#: /etc/rc.d/init.d/bgpd:36 /etc/rc.d/init.d/dhcp6r:42
#: /etc/rc.d/init.d/dhcp6s:46 /etc/rc.d/init.d/dhcpd:63
#: /etc/rc.d/init.d/dhcrelay:45 /etc/rc.d/init.d/dictd:43
#: /etc/rc.d/init.d/gkrellmd:31 /etc/rc.d/init.d/ipsec:150
#: /etc/rc.d/init.d/irda:34 /etc/rc.d/init.d/mailman:91
#: /etc/rc.d/init.d/ntpd:106 /etc/rc.d/init.d/ospf6d:36
#: /etc/rc.d/init.d/ospfd:37 /etc/rc.d/init.d/ripd:36
#: /etc/rc.d/init.d/ripngd:36 /etc/rc.d/init.d/sendmail:104
#: /etc/rc.d/init.d/smartd:51 /etc/rc.d/init.d/vncserver:49
#: /etc/rc.d/init.d/vsftpd:49 /etc/rc.d/init.d/xfs:82
#: /etc/rc.d/init.d/zebra:37
msgid "Shutting down $prog: "
msgstr "$prog herunterfahren: "

#: /etc/rc.d/init.d/halt:184
msgid "Unmounting file systems (retry): "
msgstr "Dateisysteme aushängen (erneuter Versuch): "

#: /etc/rc.d/init.d/NetworkManager:42
msgid "Stopping NetworkManager daemon: "
msgstr "NetworkManager-Daemon stoppen: "

#: /etc/rc.d/init.d/atalk:91 /etc/rc.d/init.d/isdn:281
#: /etc/rc.d/init.d/ldap:191
msgid "Usage: $0 {start|stop|restart|status|condrestart}"
msgstr "Verwendung: $0 {start|stop|restart|status|condrestart}"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:124
msgid "INFO     "
msgstr "INFO     "

#: /etc/rc.d/init.d/netfs:80
msgid "Unmounting network block filesystems (retry): "
msgstr "Netzwerkblock-Dateisysteme aushängen (erneuter Versuch): "

#: /etc/rc.d/init.d/halt:59
msgid "Sending all processes the TERM signal..."
msgstr "Das TERM-Signal wird an alle Prozesse gesendet..."

#: /etc/rc.d/init.d/crond:44 /etc/rc.d/init.d/crond:45
msgid "cannot stop crond: crond is not running."
msgstr ""

#: /etc/sysconfig/network-scripts/ifup-aliases:160
msgid "error in $FILE: didn't specify device or ipaddr"
msgstr "Fehler in $FILE: Gerät oder IP-Adresse wurde nicht angegeben"

#: /etc/rc.d/init.d/nfs:102
msgid "Shutting down NFS daemon: "
msgstr "NFS-Daemon herunterfahren: "

#: /etc/rc.d/init.d/netfs:115
msgid "Unmounting NCP filesystems: "
msgstr "NCP-Dateisysteme aushängen: "

#: /etc/rc.d/init.d/postfix:62
#, fuzzy
msgid "Shutting down postfix: "
msgstr "$prog herunterfahren: "

#: /etc/rc.d/init.d/innd:76
msgid "Reloading INN Service: "
msgstr "INN-Dienst neu laden: "

#: /etc/rc.d/init.d/arptables_jf:85
msgid "Flushing all chains:"
msgstr "Alle Ketten leeren:"

#: /etc/rc.d/init.d/mysqld:61
msgid "Initializing MySQL database: "
msgstr "MySQL Datenbank initialisieren: "

#: /etc/sysconfig/network-scripts/ifup-sl:35
msgid "/usr/sbin/dip does not exist or is not executable for $DEVICE"
msgstr "/usr/sbin/dip existiert nicht oder ist nicht ausführbar für $DEVICE"

#: /etc/rc.d/init.d/smb:121 /etc/rc.d/init.d/winbind:96
msgid "Usage: $0 {start|stop|restart|reload|status|condrestart}"
msgstr "Verwendung: $0 {start|stop|restart|reload|status|condrestart}"

#: /etc/rc.d/init.d/halt:144 /etc/rc.d/init.d/netfs:62
msgid "Detaching loopback device $dev: "
msgstr "Loopback Gerät $dev herunterfahren: "

#: /etc/rc.d/init.d/netfs:82
msgid "Unmounting network block filesystems: "
msgstr "Netzwerkblock-Dateisysteme aushängen: "

#: /etc/rc.d/init.d/ip6tables:217
msgid "Saving firewall rules to $IP6TABLES_DATA: "
msgstr "Firewall-Regeln in $IP6TABLES_DATA speichern: "

#: /etc/rc.d/init.d/gdm-allow-login:35 /etc/rc.d/init.d/kudzu:65
msgid "Usage: $0 {start|stop}"
msgstr "Verwendung: $0 {start|stop}"

#: /etc/rc.d/init.d/gdm-allow-login:17
msgid "Allow users to login from display manager:"
msgstr ""

#: /etc/rc.d/init.d/cups:97 /etc/rc.d/init.d/httpd:76 /etc/rc.d/init.d/lisa:61
#: /etc/rc.d/init.d/named:132 /etc/rc.d/init.d/nscd:103
#: /etc/rc.d/init.d/radvd:61 /etc/rc.d/init.d/snmpd:48
#: /etc/rc.d/init.d/sshd:128 /etc/rc.d/init.d/xfs:96
msgid "Reloading $prog: "
msgstr "$prog neu laden: "

#: /etc/rc.d/init.d/psacct:18
msgid "Starting process accounting: "
msgstr "Prozess-Accounting Starten: "

#: /etc/rc.d/init.d/ypxfrd:22
msgid "Starting YP map server: "
msgstr "YP map-Server starten: "

#: /etc/rc.d/init.d/apmd:76
msgid "Usage: apmd {start|stop|status|restart|reload|condrestart}"
msgstr "Verwendung: apmd {start|stop|status|restart|reload|condrestart}"

#: /etc/rc.d/rc.sysinit:296
msgid "Loading default keymap ($KEYTABLE): "
msgstr "Standardmäßige Tastenbelegung laden ($KEYTABLE):"

#: /etc/sysconfig/network-scripts/ifup-ippp:360
#: /etc/sysconfig/network-scripts/ifup-isdn:360
msgid ""
"Warning: ipppd (kernel 2.4.x and below) doesn't support IPv6 using "
"encapsulation 'syncppp'"
msgstr ""
"Warnung: ipppd (Kernel 2.4.x und niedriger) unterstützt kein IPv6, das die "
"Kapselung 'syncppp' verwendet"

#: /etc/rc.d/init.d/gpm:33
msgid "(no mouse is configured)"
msgstr "(es wurde keine Maus konfiguriert)"

#: /etc/rc.d/init.d/xendomains:111
#, fuzzy
msgid "Shutting down all Xen domains:"
msgstr "pand herunterfahren: "

#: /etc/sysconfig/network-scripts/ifup-ipv6:102
msgid ""
"Global IPv6 forwarding is enabled in configuration, but not currently "
"enabled in kernel"
msgstr ""
"Globale IPv6-Weiterleitung ist in der Konfiguration aktiviert, aber im "
"Kernel zur Zeit nicht"

#: /etc/rc.d/init.d/gdm-early-login:37
#, fuzzy
msgid "Usage: $0 {start|stop)"
msgstr "Verwendung: $0 {start|stop}"

#: /etc/rc.d/init.d/apmd:37
msgid "Shutting down APM daemon: "
msgstr "APM-Daemon herunterfahren: "

#: /etc/rc.d/init.d/postfix:84
msgid "postfix flush"
msgstr ""

#: /etc/sysconfig/network-scripts/network-functions-ipv6:560
msgid "Cannot add IPv6 address '$address' on dev '$device'"
msgstr ""

#: /etc/sysconfig/network-scripts/network-functions-ipv6:877
msgid "Given address '$addr' is not a valid IPv4 one (arg 1)"
msgstr "Die angegebene Adresse '$addr' ist keine gültige IPv4-Adresse (arg 1)"

#: /etc/rc.d/init.d/postfix:72
#, fuzzy
msgid "postfix reload"
msgstr "$prog neu laden"

#: /etc/rc.d/init.d/netfs:121
msgid "Configured NFS mountpoints: "
msgstr "Konfigurierte NFS Einhängepunkte: "

#: /etc/rc.d/init.d/hidd:34
msgid "Shutting down hidd: "
msgstr "hidd herunterfahren: "

#: /etc/rc.d/init.d/halt:166
msgid "Unmounting pipe file systems: "
msgstr "Pipe-Dateisysteme aushängen: "

#: /etc/rc.d/rc:37
msgid "Entering interactive startup"
msgstr "In den interaktiven Start-Modus gelangen"

#: /etc/rc.d/init.d/xfs:134
msgid "Usage: $prog {start|stop|status|restart|reload|condrestart}"
msgstr "Verwendung: $prog {start|stop|status|restart|reload|condrestart}"

#: /etc/rc.d/init.d/ups:61
msgid "Stopping UPS monitor: "
msgstr "UPS-Monitor stoppen: "

#: /etc/rc.d/init.d/microcode_ctl:25
msgid "$0: $DEVICE not a character device?"
msgstr "$0: $DEVICE ist kein Character-Gerät?"

#: /etc/sysconfig/network-scripts/ifup-aliases:306
msgid "error in $FILE: IPADDR_START and IPADDR_END don't agree"
msgstr "Fehler in $FILE: IPADDR_START und IPADDR_END stimmen nicht überein"

#: /etc/rc.d/init.d/functions:214
msgid "$base $killlevel"
msgstr "$base $killlevel"

#: /etc/sysconfig/network-scripts/ifup-ppp:60
msgid "adsl-start does not exist or is not executable for ${DEVICE}"
msgstr "adsl-start existiert nicht oder ist nicht ausführbar für ${DEVICE}"

#: /etc/rc.d/init.d/isdn:190
msgid "Shutting down $prog"
msgstr "$prog herunterfahren"

#: /etc/rc.d/init.d/pcmcia:145
msgid "cardmgr (pid $pid) is running..."
msgstr "cardmgr (PID $pid) wird ausgeführt..."

#: /etc/rc.d/rc:39
msgid "Entering non-interactive startup"
msgstr "In den nicht-interaktiven Start-Modus gelangen"

#: /etc/sysconfig/network-scripts/ifup-ipv6:119
msgid ""
"Global IPv6 forwarding is disabled in configuration, but not currently "
"disabled in kernel"
msgstr ""
"Globale IPv6-Weiterleitung ist in der Konfiguration deaktiviert, aber zur "
"Zeit im Kernel nicht deaktiviert"

#: /etc/rc.d/init.d/iptables:217
msgid "Saving firewall rules to $IPTABLES_DATA: "
msgstr "Aktuelle Regeln in $IPTABLES_DATA speichern: "

#: /etc/rc.d/init.d/rpcgssd:99 /etc/rc.d/init.d/rpcidmapd:85
#: /etc/rc.d/init.d/rpcsvcgssd:98
msgid "Usage: $0 {start|stop|restart|condstart|condrestart|status}"
msgstr "Verwendung: $0 {start|stop|restart|condstart|condrestart|status}"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:286
msgid ""
"IPv6 forwarding per device cannot be controlled via sysctl - use netfilter6 "
"instead"
msgstr ""
"IPv6 Weiterleitung kann nicht für einzelne Geräte eingestellt werden - bitte "
"netfilter6 benutzen"

#: /etc/rc.d/init.d/innd:59
msgid "Stopping INNFeed service: "
msgstr "INNFeed-Dienst stoppen: "

#: /etc/rc.d/init.d/httpd:79
#, fuzzy
msgid "not reloading due to configuration syntax error"
msgstr "cron-Daemon Konfiguration neu laden: "

#: /etc/rc.d/init.d/mdmpd:44 /etc/rc.d/init.d/mdmpd:49
msgid "mdmpd"
msgstr "mdmpd"

#: /etc/rc.d/init.d/postfix:129
#, fuzzy
msgid ""
"Usage: postfix {start|stop|restart|reload|abort|flush|check|status|"
"condrestart}"
msgstr "Verwendung: $0 {start|stop|restart|reload|status|condrestart}"

#: /etc/rc.d/init.d/network:267
msgid "Shutting down loopback interface: "
msgstr "Loopback Schnittstelle herunterfahren: "

#: /etc/rc.d/init.d/dovecot:60
msgid "Usage: $0 {condrestart|start|stop|restart|reload|status}"
msgstr "Verwendung: $0 {condrestart|start|stop|restart|reload|status}"

#: /etc/rc.d/init.d/syslog:37
msgid "Starting kernel logger: "
msgstr "Kernel-Protokollierdienst starten: "

#: /etc/rc.d/init.d/yppasswdd:49
msgid "Stopping YP passwd service: "
msgstr "YP-Passwortdienst stoppen: "

#: /etc/rc.d/rc.sysinit:454
msgid "Checking local filesystem quotas: "
msgstr "Quota der lokalen Dateisysteme prüfen: "

#: /etc/rc.d/init.d/single:44
msgid "Telling INIT to go to single user mode."
msgstr "INIT anweisen, in den Einzelbenutzermodus überzugehen."

#: /etc/rc.d/init.d/pcmcia:81
msgid "Starting PCMCIA services: "
msgstr "PCMCIA-Dienste starten: "

#: /etc/rc.d/init.d/halt:214
msgid "$message"
msgstr "$message"

#: /etc/rc.d/init.d/postfix:40
msgid "determination of alias_database"
msgstr ""

#: /etc/sysconfig/network-scripts/ifup-eth:178
msgid " done."
msgstr " erledigt."

#: /etc/rc.d/init.d/halt:138 /etc/rc.d/init.d/netfs:56
msgid "Unmounting loopback filesystems (retry):"
msgstr "Loopback-Dateisysteme aushängen (erneuter Versuch):"

#: /etc/rc.d/init.d/hidd:25
msgid "Starting hidd: "
msgstr "hidd starten: "

#: /etc/rc.d/init.d/named:139
msgid "$prog reload"
msgstr "$prog neu laden"

#: /etc/rc.d/init.d/cups-config-daemon:33
msgid "Stopping cups-config-daemon: "
msgstr "cups-config-Daemon stoppen: "

# FIXME
#: /etc/rc.d/init.d/readahead:19 /etc/rc.d/init.d/readahead_early:19
msgid "Starting background readahead: "
msgstr "Hintergrund-readahead starten: "

#: /etc/sysconfig/network-scripts/ifup:22
#: /etc/sysconfig/network-scripts/ifup:30
msgid "Usage: ifup <device name>"
msgstr "Verwendung: ifup <Gerätename>"

#: /etc/rc.d/init.d/sshd:60 /etc/rc.d/init.d/sshd:63
msgid "RSA key generation"
msgstr "RSA-Schlüsselerzeugung"

# FIXME Kontingent?
#: /etc/rc.d/init.d/halt:126
msgid "Turning off quotas: "
msgstr "Quota deaktivieren: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1499
msgid "Pidfile '$pidfile' is empty, cannot send trigger to radvd"
msgstr "PID-Datei '$pidfile' ist leer, kann Trigger nicht zu radvd senden"

#: /etc/rc.d/init.d/rpcsvcgssd:76
#, fuzzy
msgid "Shutting down RPC svcgssd: "
msgstr "NFS4 svcgssd herunterfahren: "

#: /etc/rc.d/init.d/netfs:38
msgid "Mounting NFS filesystems: "
msgstr "NFS-Dateisysteme einhängen: "

#: /etc/rc.d/init.d/NetworkManager:33
msgid "Starting NetworkManager daemon: "
msgstr "NetworkManager-Daemon starten: "

#: /etc/rc.d/init.d/named:95
msgid "Error in configuration file /etc/named.conf : $named_err"
msgstr "Fehler in Konfigurationsdatei /etc/named.conf : $named_err"

#: /etc/sysconfig/network-scripts/ifup-ipv6:290
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Fehler während der Berechnung des IPv6to4-Präfixes"

#: /etc/rc.d/init.d/arptables_jf:165 /etc/rc.d/init.d/arptables_jf:166
msgid "Saving current rules to $ARPTABLES_CONFIG"
msgstr "Aktuelle Regeln in $ARPTABLES_CONFIG speichern"

#: /etc/rc.d/init.d/smartd:76
msgid "Usage: $0 {start|stop|reload|report|restart|status}"
msgstr "Verwendung: $0 {start|stop|reload|report|restart|status}"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1283
msgid "Given IPv6 MTU '$ipv6_mtu' is out of range"
msgstr "Gegebene IPv6 MTU '$ipv6_mtu' ist ausserhalb des Bereichs"

#: /etc/rc.d/init.d/nfs:160
msgid "Usage: nfs {start|stop|status|restart|reload|condrestart}"
msgstr "Verwendung: nfs {start|stop|status|restart|reload|condrestart}"

#: /etc/sysconfig/network-scripts/ifup-aliases:67
msgid "usage: ifup-aliases <net-device> [<parent-config>]\n"
msgstr "Verwendung: ifup-aliases <net-device> [<parent-config>]\n"

#: /etc/rc.d/rc.sysinit:301
msgid "Loading default keymap"
msgstr "Standardmäßige Tastenbelegung laden"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:147
msgid "ERROR: [ipv6_log] Cannot log to channel '$channel'"
msgstr "FEHLER: [ipv6_log] kann nicht zum Kanal '$channel' protokollieren"

#: /etc/rc.d/init.d/network:66
msgid "Bringing up loopback interface: "
msgstr "Loopback Schnittstelle hochfahren: "

#: /etc/rc.d/init.d/kadmin:58 /etc/rc.d/init.d/krb5kdc:48
msgid "Reopening $prog log file: "
msgstr "$prog-Protokolldatei neu öffnen: "

#: /etc/rc.d/init.d/functions:207 /etc/rc.d/init.d/functions:218
msgid "$base shutdown"
msgstr "Herunterfahren von $base"

#: /etc/rc.d/init.d/smb:77 /etc/rc.d/init.d/winbind:65
msgid "Reloading smb.conf file: "
msgstr "smb.conf Datei neu laden: "

#: /etc/rc.d/init.d/crond:29
#, fuzzy
msgid "cannot start crond: crond already running."
msgstr "Postmaster wird bereits ausgeführt."

#: /etc/rc.d/init.d/psacct:36
msgid "Process accounting is enabled."
msgstr "Prozess-Accounting ist aktiviert."

#: /etc/sysconfig/network-scripts/ifup-eth:166
msgid "Determining IP information for ${DEVICE}..."
msgstr "IP-Informationen werden für ${DEVICE} bestimmt..."

#: /etc/rc.d/init.d/postgresql:208
msgid "Stopping ${NAME} service: "
msgstr "${NAME}-Dienst stoppen:"

#: /etc/rc.d/init.d/postfix:79
msgid "postfix abort"
msgstr ""

#: /etc/rc.d/init.d/functions:152 /etc/rc.d/init.d/mDNSResponder:29
msgid "$base startup"
msgstr "Starten von $base"

#: /etc/sysconfig/network-scripts/ifup-ipv6:293
msgid "radvd control enabled, but config is not complete"
msgstr "radvd-Steuerung aktiviert, aber Konfiguration unvollständig"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:862
msgid "Missing parameter 'address' (arg 1)"
msgstr "Parameter 'address' fehlt (arg 1)"

#: /etc/rc.d/init.d/isdn:246
msgid "$0: Link is down"
msgstr "$0: Verbindung ist unterbrochen"

#: /etc/rc.d/init.d/psacct:38
msgid "Process accounting is disabled."
msgstr "Prozess-Accounting ist deaktiviert."

#: /etc/rc.d/init.d/auditd:79 /etc/rc.d/init.d/xinetd:78
msgid "Reloading configuration: "
msgstr "Konfiguration neu laden: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:115
msgid "ERROR    "
msgstr "FEHLER   "

#: /etc/rc.d/init.d/innd:26
msgid "Please run makehistory and/or makedbz before starting innd."
msgstr ""
"Bitte führen Sie makehistory und/oder makedbz aus, bevor Sie innd starten."

#: /etc/rc.d/init.d/ip6tables:172
msgid "Loading additional $IP6TABLES modules: "
msgstr "Zusätzliche $IP6TABLES-Module laden: "

#: /etc/rc.d/init.d/mDNSResponder:24
msgid "Starting mDNSResponder... "
msgstr "mDNSResponder wird gestartet... "

#: /etc/rc.d/init.d/netfs:149
msgid "Active NCP mountpoints: "
msgstr "Aktive NCP Einhängepunkte: "

#: /etc/rc.d/init.d/rpcgssd:77
#, fuzzy
msgid "Shutting down RPC gssd: "
msgstr "NFS4 gssd herunterfahren: "

#: /etc/rc.d/init.d/sshd:119
#, fuzzy
msgid "Stopping $prog"
msgstr "$prog stoppen:"

#: /etc/rc.d/init.d/bootparamd:69 /etc/rc.d/init.d/pcmcia:55
#: /etc/rc.d/init.d/psacct:48
msgid "Usage: $0 {start|stop|status|restart|reload}"
msgstr "Verwendung: $0 {start|stop|status|restart|reload}"

#: /etc/rc.d/init.d/functions:441
msgid "yY"
msgstr "jJyY"

#: /etc/sysconfig/network-scripts/ifup-aliases:226
#: /etc/sysconfig/network-scripts/ifup-aliases:236
msgid "error in ifcfg-${parent_device}: files"
msgstr "Fehler in ifcfg-${parent_device}: Dateien"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1007
msgid "Missing parameter 'local IPv4 address' (arg 2)"
msgstr "Fehlender Parameter 'local IPv4 address' (arg 2)"

#: /etc/rc.d/init.d/nfs:106
msgid "Shutting down NFS quotas: "
msgstr "NFS-Quotas herunterfahren:"

#: /etc/rc.d/init.d/functions:90 /etc/rc.d/init.d/functions:118
msgid "$0: Usage: daemon [+/-nicelevel] {program}"
msgstr "$0: Verwendung: daemon [+/-nicelevel] {Programm}"

#: /etc/rc.d/init.d/functions:307
msgid "${base} dead but subsys locked"
msgstr "${base} tot, aber Subsystem gesperrt"

#: /etc/rc.d/init.d/named:33
msgid "$prog: already running"
msgstr "$prog: wird bereits ausgeführt."

#: /etc/rc.d/init.d/rstatd:21
msgid "Starting rstat services: "
msgstr "rstat-Dienste starten: "

#: /etc/rc.d/init.d/netfs:129
msgid "Configured CIFS mountpoints: "
msgstr "Konfigurierte CIFS Einhängepunkte: "

#: /etc/sysconfig/network-scripts/ifup:109
#: /etc/sysconfig/network-scripts/ifup:110
msgid "ERROR: could not add vlan ${VID} as ${DEVICE} on dev ${PHYSDEV}"
msgstr ""
"FEHLER: Konnte VLAN ${VID} als ${DEVICE} auf Gerät ${PHYSDEV} nicht "
"hinzufügen"

#: /etc/rc.d/init.d/vncserver:42
msgid "vncserver startup"
msgstr "VNC-Serer starten"

#: /etc/sysconfig/network-scripts/init.ipv6-global:181
msgid "Usage: $0 {start|stop|reload|restart|showsysctl}"
msgstr "Verwendung: $0 {start|stop|reload|restart|showsysctl}"

#: /etc/rc.d/init.d/network:272
msgid "Disabling IPv4 packet forwarding: "
msgstr "IPv4 Paket-Weiterleitung deaktivieren: "

#: /etc/sysconfig/network-scripts/ifup-ppp:47
msgid "ifup-ppp for ${DEVICE} exiting"
msgstr "ifup-ppp für ${DEVICE} beenden"

#: /etc/rc.d/init.d/haldaemon:35
msgid "Stopping HAL daemon: "
msgstr "HAL-Daemon stoppen: "

#: /etc/rc.d/init.d/network:84
msgid "No 802.1Q VLAN support available in kernel."
msgstr "Kein 802.1Q VLAN Support im Kernel verfügbar."

#: /etc/rc.d/init.d/rpcgssd:46
#, fuzzy
msgid "Starting RPC gssd: "
msgstr "NFS4 gssd starten: "

#: /etc/rc.d/init.d/nfs:149
msgid "reload"
msgstr "Neu laden"

#: /etc/rc.d/rc.sysinit:337
msgid "Setting up Logical Volume Management:"
msgstr "Logical Volume Management einrichten:"

#: /etc/rc.d/rc.sysinit:143
msgid "Initializing hardware... "
msgstr "Initialisiere Hardware... "

#: /etc/rc.d/init.d/netfs:141
msgid "Active SMB mountpoints: "
msgstr "Aktive SMB Einhängepunkte: "

#: /etc/rc.d/init.d/kadmin:39
msgid "Extracting kadm5 Service Keys: "
msgstr "kadm5 Dienstschlüssel extrahieren: "

#: /etc/rc.d/init.d/privoxy:206
msgid "Starting $PRIVOXY_PRG: "
msgstr "$PRIVOXY_PRG starten: "

#: /etc/rc.d/init.d/innd:66
msgid "Stopping INN actived service: "
msgstr "INN actived-Dienst stoppen: "

#: /etc/sysconfig/network-scripts/ifup-aliases:156
msgid "error in $FILE: already seen device $parent_device:$DEVNUM in $devseen"
msgstr ""
"Fehler in $FILE: Gerät $parent_device:$DEVNUM bereits in $devseen gesehen"

#: /etc/rc.d/init.d/syslog:44
msgid "Shutting down kernel logger: "
msgstr "Kernel-Protokollierdienst herunterfahren: "

#: /etc/rc.d/init.d/ups:48
msgid "Starting UPS monitor (master): "
msgstr "UPS-Monitor (Master) starten: "

#: /etc/rc.d/init.d/autofs:535
msgid "Stop $command"
msgstr "$command stoppen"

#: /etc/rc.d/init.d/halt:35
msgid "Halting system..."
msgstr "System anhalten..."

#: /etc/sysconfig/network-scripts/ifup:75
msgid "PHYSDEV should be set for device ${DEVICE}"
msgstr ""

#: /etc/rc.d/init.d/iptables:158
msgid "Applying $IPTABLES firewall rules: "
msgstr "$IPTABLES Firewall-Regeln anwenden: "

#: /etc/rc.d/init.d/functions:285
msgid "Usage: status {program}"
msgstr "Verwendung: status {Programm}"

#: /etc/rc.d/init.d/amd:93
msgid "Reloading $prog:"
msgstr "$prog neu laden:"

#: /etc/rc.d/init.d/rhnsd:46
msgid "Stopping Red Hat Network Daemon: "
msgstr "Red Hat Network-Daemon stoppen: "

#: /etc/rc.d/init.d/xendomains:84
#, fuzzy
msgid "Starting auto Xen domains:"
msgstr "APM-Daemon starten: "

#: /etc/rc.d/init.d/multipathd:44
#, fuzzy
msgid "Stopping $prog daemon: "
msgstr "ACPI-Daemon stoppen: "

#: /etc/sysconfig/network-scripts/ifup-ipv6:277
msgid ""
"Using 6to4 and RADVD IPv6 forwarding usually should be enabled, but it isn't"
msgstr ""
"Normalerweise sollte 6to4- und RADVD IPv6-Weiterleitung aktiviert sein, ist "
"es aber nicht"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:267
msgid "Forwarding control parameter isn't valid '$fw_control' (arg 1)"
msgstr "Weiterleitender Kontrollparameter ist ungültig '$fw_control' (arg 1)"

#: /etc/rc.d/init.d/rusersd:35
msgid "Stopping rusers services: "
msgstr "rusers-Dienste stoppen: "

#: /etc/rc.d/init.d/dund:25
msgid "Starting dund: "
msgstr "dund starten: "

#: /etc/rc.d/rc.sysinit:611
msgid "Enabling swap space: "
msgstr "Swap-Bereich aktivieren: "

#: /etc/rc.d/init.d/messagebus:26
msgid "Starting system message bus: "
msgstr "System-Message-Bus starten: "

#: /etc/sysconfig/network-scripts/ifup:29
msgid "$0: configuration for ${1} not found."
msgstr "$0: Konfiguration für ${1} nicht gefunden."

#: /etc/rc.d/init.d/privoxy:221
msgid "Stopping $PRIVOXY_PRG: "
msgstr "$PRIVOXY_PRG stoppen: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1069
msgid ""
"Given remote address '$addressipv4tunnel' on tunnel device '$device' is "
"already configured on device '$devnew'"
msgstr ""
"Die angegebene Adresse '$addressipv4tunnel' für das Tunnel-Gerät '$device' "
"ist bereits für das Gerät '$devnew' eingestellt"

#: /etc/sysconfig/network-scripts/ifup-sl:44
msgid "/etc/sysconfig/network-scripts/dip-$DEVICE does not exist"
msgstr "/etc/sysconfig/network-scripts/dip-$DEVICE existiert nicht"

#: /etc/sysconfig/network-scripts/ifdown-sit:46
#: /etc/sysconfig/network-scripts/ifup-sit:59
msgid ""
"Device '$DEVICE' isn't supported here, use IPV6_AUTOTUNNEL setting and "
"restart (IPv6) networking"
msgstr ""
"Gerät '$DEVICE' wird hier nicht unterstützt, verwenden Sie die "
"IPV6_AUTOTUNNEL- Einstellung und starten sie das (IPv6) Netzwerk neu"

#: /etc/rc.d/init.d/yum:22
msgid "Enabling nightly yum update: "
msgstr "Nächtliches yum-Update aktivieren: "

#: /etc/rc.d/init.d/yum:65
msgid "Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
msgstr ""
"Verwendung: $0 {start|stop|status|restart|reload|force-reload|condrestart}"

#: /etc/rc.d/init.d/postfix:71
#, fuzzy
msgid "Reloading postfix: "
msgstr "$prog neu laden: "

#: /etc/rc.d/init.d/isicom:36
msgid "Disabling PLX devices... "
msgstr "PLX-Geräte deaktivieren... "

#: /etc/rc.d/init.d/vsftpd:37
msgid "$prog $site"
msgstr "$prog $site"

#: /etc/rc.d/init.d/netplugd:33
msgid "Starting network plug daemon: "
msgstr "Starte Netzwerkkabel-Hotplug-Daemon: "

#: /etc/rc.d/init.d/network:295
msgid "Currently active devices:"
msgstr "Derzeit aktive Dienste:"

#: /etc/rc.d/init.d/NetworkManager:31
#, fuzzy
msgid "Setting network parameters... "
msgstr "Netzwerkparameter einstellen: "

#: /etc/rc.d/init.d/isicom:63
msgid "Usage: ${0##*/} {start|stop|status|restart|reload|condrestart}"
msgstr "Usage: ${0##*/} {start|stop|status|restart|reload|condrestart}"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:822
msgid "Missing parameter 'IPv4 address' (arg 1)"
msgstr "Fehlender Parameter 'IPv4 address' (arg 1)"

#: /etc/rc.d/init.d/rarpd:65
msgid "Usage: $0 {start|stop|restart|condrestart|reload|status}"
msgstr "Verwendung: $0 {start|stop|restart|condrestart|reload|status}"

#: /etc/rc.d/init.d/netplugd:59 /etc/rc.d/init.d/rdisc:77
#: /etc/rc.d/init.d/rstatd:63 /etc/rc.d/init.d/rusersd:66
#: /etc/rc.d/init.d/rwalld:64 /etc/rc.d/init.d/rwhod:63
msgid "Usage: $0 {start|stop|status|restart}"
msgstr "Verwendung: $0 {start|stop|status|restart}"

#: /etc/rc.d/init.d/postfix:63
msgid "postfix stop"
msgstr ""

#: /etc/rc.d/init.d/smartd:63
msgid "Checking SMART devices now: "
msgstr "SMART-Geräte werden jetzt überprüft: "

#: /etc/sysconfig/network-scripts/ifup-ippp:55
#: /etc/sysconfig/network-scripts/ifup-isdn:55
msgid "$*"
msgstr "$*"

#: /etc/rc.d/init.d/dc_client:74 /etc/rc.d/init.d/dc_server:70
msgid "Usage: $prog {start|stop|restart|condrestart|status|help}"
msgstr "Verwendung: $prog {start|stop|restart|condrestart|status|help}"

#: /etc/rc.d/init.d/ypbind:44
msgid "Listening for an NIS domain server."
msgstr "Warten auf NIS-Domänenserver."

#: /etc/rc.d/rc.sysinit:414
msgid "(Repair filesystem)"
msgstr "(Dateisystem reparieren)"

#: /etc/rc.d/init.d/httpd:80
#, fuzzy
msgid "not reloading $httpd due to configuration syntax error"
msgstr "$prog-Daemon Konfiguration neu laden: "

#: /etc/rc.d/init.d/postgresql:169
msgid "Initializing database: "
msgstr "Datenbank initialisieren: "

#: /etc/rc.d/init.d/vncserver:20
msgid "VNC server"
msgstr "VNC-Server"

#: /etc/sysconfig/network-scripts/ifup-eth:62
msgid "Bridge support not available in this kernel"
msgstr "Keine Bridge-Unterstützung im Kernel verfügbar"

#: /etc/rc.d/init.d/pand:36
msgid "Shutting down pand: "
msgstr "pand herunterfahren: "

#: /etc/sysconfig/network-scripts/ifup-routes:5
msgid "usage: ifup-routes <net-device> [<nickname>]"
msgstr "Verwendung: ifup-routes <net-device> [<nickname>]"

#: /etc/rc.d/init.d/clvmd:162
#, fuzzy
msgid "Usage: $0 {start|stop|restart|status}"
msgstr "Verwendung: $0 {start|stop|restart|reload|status}"

#: /etc/sysconfig/network-scripts/ifup-ppp:81
msgid ""
"/etc/sysconfig/network-scripts/chat-${DEVNAME} does not exist for ${DEVICE}"
msgstr ""
"/etc/sysconfig/network-scripts/chat-${DEVNAME} existiert nicht für ${DEVICE}"

#: /etc/rc.d/init.d/pcmcia:98
msgid "using yenta_socket instead of $PCIC"
msgstr "Benutze \"yenta_socket\" anstatt \"$PCIC\""

#: /etc/rc.d/init.d/radiusd:37
msgid "Starting RADIUS server: "
msgstr "RADIUS-Server starten: "

#: /etc/sysconfig/network-scripts/ifdown:13
#: /etc/sysconfig/network-scripts/ifdown:20
msgid "usage: ifdown <device name>"
msgstr "Verwendung: ifdown <Gerätename>"

#: /etc/rc.d/init.d/nfslock:58
msgid "Starting NFS locking: "
msgstr "NFS-locking starten: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1049
msgid "Missing parameter 'IPv4-tunnel address' (arg 2)"
msgstr "Fehlender Parameter 'IPv4-tunnel address' (arg 2)"

#: /etc/rc.d/init.d/postgresql:160
msgid "An old version of the database format was found."
msgstr ""

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1444
msgid "No reason given for sending trigger to radvd"
msgstr "Kein Grund gegeben, zum Senden von trigger zu radvd"

#: /etc/rc.d/init.d/arptables_jf:74
msgid "Applying arptables firewall rules: "
msgstr "arptables Firewall-Regeln anwenden:"

#: /etc/rc.d/init.d/isicom:20
msgid "Loading isicom firmware... "
msgstr "isicom Firmware laden... "

#: /etc/rc.d/init.d/microcode_ctl:95
#, fuzzy
msgid "Usage: $0 {start|stop|restart}"
msgstr "Verwendung: $0 {start|restart}"

#: /etc/rc.d/init.d/rwhod:23
msgid "Starting rwho services: "
msgstr "rwho-Dienste starten: "

#: /etc/rc.d/init.d/innd:45
msgid "Stopping INND service: "
msgstr "INND-Dienst stoppen: "

#: /etc/rc.d/init.d/psacct:23
msgid "Shutting down process accounting: "
msgstr "Prozess-Accounting abschalten: "

#: /etc/rc.d/init.d/dund:34
msgid "Shutting down dund: "
msgstr "dund herunterfahren: "

#: /etc/rc.d/init.d/gpm:61
msgid "Shutting down console mouse services: "
msgstr "Mausdienste der Konsole herunterfahren: "

#: /etc/rc.d/init.d/ypbind:29 /etc/rc.d/init.d/ypserv:30
msgid "Setting NIS domain name $NISDOMAIN: "
msgstr "NIS-Domänenname $NISDOMAIN einstellen:"

#: /etc/rc.d/init.d/kudzu:25
msgid "Checking for new hardware"
msgstr "Überprüfung auf neue Hardware"

#: /etc/rc.d/init.d/ip6tables:27
msgid "ipchains and $IP6TABLES can not be used together."
msgstr "ipchains und $IP6TABLES können nicht zusammen verwendet werden."

#: /etc/rc.d/init.d/isdn:179 /etc/rc.d/init.d/isdn:182
msgid "Starting $prog"
msgstr "$prog starten"

#: /etc/rc.d/init.d/autofs:539
msgid "Reload map $command"
msgstr "map $command neu laden"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1332
msgid ""
"Given IPv6 default gateway '$address' has scope '$device_scope' defined, "
"given default gateway device '$device' will be not used"
msgstr ""
"Gegebenes IPv6 Standard-Gateway '$address' hat den Geräteumfang "
"'$device_scope' definiert, und das gegebene Standard-Gateway-Gerät '$device' "
"wird nicht verwendet"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1478
msgid "Unsupported mechanism '$mechanism' for sending trigger to radvd"
msgstr ""
"Nicht unterstützter Mechanismus '$mechanism' zum Senden von trigger zu radvd"

#: /etc/rc.d/init.d/postgresql:268
msgid ""
"Usage: $0 {start|stop|status|restart|condrestart|condstop|reload|force-"
"reload}"
msgstr ""
"Verwendung: $0 {start|stop|status|restart|condrestart|condstop|reload|force-"
"reload}"

#: /etc/sysconfig/network-scripts/ifup-ipv6:199
msgid "Given IPv4 address '$ipv4addr' is not globally usable"
msgstr "Die angegebene IPv4-Adresse '$ipv4addr' ist nicht global verwendbar"

#: /etc/rc.d/init.d/smb:58 /etc/rc.d/init.d/smb:63 /etc/rc.d/init.d/winbind:51
msgid "Shutting down $KIND services: "
msgstr "$KIND Dienste herunterfahren: "

#: /etc/rc.d/init.d/ip6tables:257 /etc/rc.d/init.d/ip6tables:262
#: /etc/rc.d/init.d/iptables:257 /etc/rc.d/init.d/iptables:262
msgid "Firewall is not configured. "
msgstr "Firewall ist nicht konfiguriert. "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:178
msgid "Kernel is not compiled with IPv6 support"
msgstr "Kernel ist ohne IPv6-Unterstützung kompiliert worden"

#: /etc/rc.d/init.d/arptables_jf:106
msgid "Resetting built-in chains to the default ACCEPT policy:"
msgstr "Eingebaute Ketten auf standardmäßige ACCEPT-Richtlinie zurückgesetzt:"

#: /etc/rc.d/init.d/functions:439
msgid "Start service $1 (Y)es/(N)o/(C)ontinue? [Y] "
msgstr "Dienst $1 starten - (J)Ja/(N)Nein/(W)Weiter? [J] "

#: /etc/rc.d/init.d/radiusd:56
msgid "Reloading RADIUS server: "
msgstr "RADIUS-Server neu laden: "

#: /etc/rc.d/rc.sysinit:378
msgid "Checking filesystems"
msgstr "Dateisysteme prüfen"

#: /etc/rc.d/init.d/arptables_jf:96
msgid "Removing user defined chains:"
msgstr "Benutzerdefinierte Ketten entfernen:"

#: /etc/rc.d/init.d/multipathd:36
#, fuzzy
msgid "Starting $prog daemon: "
msgstr "ACPI-Daemon starten: "

#: /etc/rc.d/rc.sysinit:411
msgid "*** Dropping you to a shell; the system will reboot"
msgstr ""
"*** Sie werden zu einer Shell geführt; das System wird danach neu gestartet"

#: /etc/rc.d/init.d/ip6tables:158
msgid "Applying $IP6TABLES firewall rules: "
msgstr "$IP6TABLES Firewall-Regeln anwenden: "

#: /etc/rc.d/init.d/httpd:118
msgid ""
"Usage: $prog {start|stop|restart|condrestart|reload|status|fullstatus|"
"graceful|help|configtest}"
msgstr ""
"Verwendung: $prog {start|stop|restart|condrestart|reload|status|fullstatus|"
"graceful|help|configtest}"

#: /etc/rc.d/init.d/postgresql:124
msgid "Starting ${NAME} service: "
msgstr "${NAME}-Dienst starten:"

#: /etc/rc.d/init.d/netfs:145
msgid "Active CIFS mountpoints: "
msgstr "Aktive CIFS Einhängepunkte: "

#: /etc/rc.d/init.d/syslog:33
msgid "Starting system logger: "
msgstr "System-Protokollierdienst starten: "

#: /etc/rc.d/init.d/nscd:67 /etc/rc.d/init.d/nscd:69
msgid "$prog shutdown"
msgstr "Herunterfahren von $prog"

#: /etc/rc.d/init.d/sshd:53
msgid "Generating SSH2 RSA host key: "
msgstr "SSH2 RSA Host-Schlüssel erzeugen: "

#: /etc/sysconfig/network-scripts/ifup-eth:238
msgid "Error adding address ${IPADDR} for ${DEVICE}."
msgstr "Fehler beim Hinzufügen der Adresse ${IPADDR} für ${DEVICE}."

#: /etc/rc.d/init.d/pcmcia:105
msgid "cardmgr is already running."
msgstr "cardmgr wird bereits ausgeführt."

#: /etc/rc.d/init.d/innd:33
msgid "Starting INND system: "
msgstr "INND-System starten: "

#: /etc/rc.d/init.d/arptables_jf:138 /etc/rc.d/init.d/ip6tables:270
#: /etc/rc.d/init.d/iptables:270
msgid "Table: $table"
msgstr "Tabelle: $table"

#: /etc/rc.d/init.d/netfs:125
msgid "Configured SMB mountpoints: "
msgstr "Konfigurierte SMB Einhängepunkte: "

#: /etc/rc.d/init.d/postfix:36
#, fuzzy
msgid "Starting postfix: "
msgstr "$prog starten: "

#: /etc/rc.d/init.d/ip6tables:118 /etc/rc.d/init.d/iptables:118
msgid "Setting chains to policy $policy: "
msgstr "Setze Ketten auf Richtlinie $policy: "

#: /etc/rc.d/init.d/nfs:146 /etc/rc.d/init.d/nfslock:121
msgid "restart"
msgstr "Neu starten"

#: /etc/sysconfig/network-scripts/ifup-eth:219
msgid "Error, some other host already uses address ${IPADDR}."
msgstr "Fehler, ein anderer Rechner verwendet bereits die Adresse ${IPADDR}."

#: /etc/rc.d/init.d/nfs:119
msgid "Shutting down NFS services: "
msgstr "NFS-Dienste herunterfahren: "

#: /etc/rc.d/init.d/netfs:133
msgid "Configured NCP mountpoints: "
msgstr "Konfigurierte NCP Einhängepunkte: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:637
msgid "Cannot delete IPv6 address '$address' on dev '$device'"
msgstr ""

#: /etc/sysconfig/network-scripts/network-functions-ipv6:519
msgid "Missing parameter 'IPv6-address' (arg 2)"
msgstr "Fehlender Parameter 'IPv6-address' (arg 2)"

#: /etc/rc.d/init.d/functions:329
msgid "FAILED"